Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.4.26

Publishes `ff7ac72` (#78), the project-context compatibility bridge.

It accepts external v1 bundles only when their schema and supplied hash are
valid, normalizes accepted legacy bundles to the canonical hash, fails closed
on malformed managed END markers unless forced, preserves adjacent same-line
user bytes, and creates a restorable before-image snapshot for target
mutations.

## 0.4.25

Publishes the two commits currently on `main` after the 0.4.24 npm gitHead:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hasna/instructions",
"version": "0.4.25",
"version": "0.4.26",
"description": "AI coding agent instruction & configuration manager \u2014 store, version, apply, and share all your AI coding configs. CLI + MCP + HTTP API (instructions-serve) + generated SDK + Dashboard.",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/v1.generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Regenerate: bun run scripts/generate-sdk.ts

// @generated from OpenAPI by @hasna/contracts SDK generator — DO NOT EDIT.
// Source: Instructions V1 API 0.4.25
// Source: Instructions V1 API 0.4.26

export interface Config { "id"?: string; "name"?: string; "slug"?: string; "kind"?: string; "category"?: string; "agent"?: string; "target_path"?: string | null; "outputs"?: Array<Record<string, unknown>>; "format"?: string; "content"?: string; "description"?: string | null; "tags"?: Array<string>; "is_template"?: boolean; "version"?: number; "created_at"?: string; "updated_at"?: string; "synced_at"?: string | null }

Expand Down
Loading