@hasna/instructions 0.7.5 → 0.7.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/chunks/{apply-xraar7p0.js → apply-33g17x4y.js} +2 -2
- package/dist/chunks/{apply-1cpkx082.js → apply-f9f2sp7y.js} +2 -2
- package/dist/chunks/{index-16j8x10s.js → index-95xa9crj.js} +1369 -36
- package/dist/chunks/{index-src5t3my.js → index-avd1s9kz.js} +1 -1
- package/dist/chunks/{index-x0v4m19f.js → index-c3s70n0a.js} +1 -1
- package/dist/chunks/{index-6qfy0542.js → index-m2mh1xew.js} +1481 -64
- package/dist/chunks/{index-rvb4znxa.js → index-mfrc04ts.js} +2 -2
- package/dist/chunks/{index-ysnp8y58.js → index-wmwrjr19.js} +2 -2
- package/dist/chunks/{local-66fck74w.js → local-7wqy2ywb.js} +1 -1
- package/dist/chunks/{local-jqfx3kbq.js → local-nbck7fs2.js} +1 -1
- package/dist/chunks/{sync-8763n4sc.js → sync-d3be8nk3.js} +3 -3
- package/dist/chunks/{sync-8ca3ew84.js → sync-gzrb11dj.js} +3 -3
- package/dist/cli/index.js +39 -11
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1618 -188
- package/dist/lib/instruction-graph.d.ts.map +1 -1
- package/dist/lib/session-apply.d.ts.map +1 -1
- package/dist/lib/session-refresh.d.ts.map +1 -1
- package/dist/lib/session-render.d.ts +16 -0
- package/dist/lib/session-render.d.ts.map +1 -1
- package/dist/lib/station-profile.d.ts.map +1 -1
- package/dist/mcp/index.js +9 -8
- package/dist/server/index.js +1352 -25
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasna/instructions",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.7",
|
|
4
4
|
"description": "AI coding agent instruction and configuration manager with fail-closed hosted clients, explicit local SQLite, native S3 backups, CLI, MCP, HTTP API, and generated SDK.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"generate:sdk": "bun run scripts/generate-sdk.ts",
|
|
45
45
|
"kit:check": "bunx @hasna/contracts vendor-kit --check",
|
|
46
46
|
"typecheck": "tsc --noEmit",
|
|
47
|
-
"test": "
|
|
47
|
+
"test": "bun run scripts/test.ts",
|
|
48
48
|
"check:package-secrets": "bun run src/cli/index.tsx package-manager-scan --fail-on-findings .",
|
|
49
49
|
"dev:cli": "bun run src/cli/index.tsx",
|
|
50
50
|
"dev:mcp": "bun run src/mcp/index.ts",
|
|
@@ -94,6 +94,7 @@
|
|
|
94
94
|
"commander": "^13.1.0",
|
|
95
95
|
"hono": "4.13.7",
|
|
96
96
|
"ink": "^5.2.0",
|
|
97
|
+
"marked": "18.0.5",
|
|
97
98
|
"pg": "^8.13.3",
|
|
98
99
|
"react": "^18.3.1",
|
|
99
100
|
"zod": "^3.24.2"
|