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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.4.25

Publishes the two commits currently on `main` after the 0.4.24 npm gitHead:
`9fe30cc` (#74) and `f3784d3` (#76).

`f3784d3` bounds managed source admission before render planning reads a source
or lets a caller-constructed source list enter `session plan` / `session apply`.
That keeps the managed-input capacity guard on the real source list rather than
only on later rendered outputs.

`9fe30cc` updates the seeded Conversations send workflow contract so the
workflow record matches the current Conversations CLI surface.

## 0.4.24

Publishes `0fcb0542` (#72): the renderer now REFUSES to write a managed output
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.24",
"version": "0.4.25",
"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.19
// Source: Instructions V1 API 0.4.25

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