@synapsor/runner 0.1.0 → 0.1.2

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.
Files changed (33) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/README.md +750 -245
  3. package/dist/cli.d.ts.map +1 -1
  4. package/dist/runner.mjs +1621 -163
  5. package/docs/README.md +85 -47
  6. package/docs/conformance.md +91 -0
  7. package/docs/migrating-to-synapsor-spec.md +191 -0
  8. package/docs/production.md +289 -0
  9. package/docs/release-notes.md +32 -0
  10. package/examples/app-owned-writeback/command-handler.mjs +0 -0
  11. package/examples/claude-desktop-postgres/Makefile +6 -0
  12. package/examples/claude-desktop-postgres/README.md +40 -0
  13. package/examples/cursor-postgres/Makefile +6 -0
  14. package/examples/cursor-postgres/README.md +30 -0
  15. package/examples/mcp-postgres-billing-app-handler/scripts/run-demo.sh +0 -0
  16. package/examples/mysql-refund-agent/Makefile +4 -0
  17. package/examples/mysql-refund-agent/README.md +36 -0
  18. package/examples/openai-agents-http/Makefile +6 -0
  19. package/examples/openai-agents-http/README.md +14 -0
  20. package/examples/openai-agents-stdio/Makefile +6 -0
  21. package/examples/openai-agents-stdio/README.md +14 -0
  22. package/examples/raw-sql-vs-synapsor/Makefile +11 -0
  23. package/examples/raw-sql-vs-synapsor/README.md +41 -0
  24. package/examples/reference-support-billing-app/scripts/run-demo.sh +0 -0
  25. package/examples/support-billing-agent/Makefile +19 -0
  26. package/examples/support-billing-agent/README.md +89 -0
  27. package/examples/support-billing-agent/app/README.md +13 -0
  28. package/examples/support-billing-agent/db/schema.sql +91 -0
  29. package/examples/support-billing-agent/db/seed.sql +43 -0
  30. package/examples/support-billing-agent/docker-compose.yml +13 -0
  31. package/examples/support-billing-agent/scripts/run-demo.sh +15 -0
  32. package/examples/support-billing-agent/synapsor.runner.json +233 -0
  33. package/package.json +27 -10
package/CHANGELOG.md CHANGED
@@ -4,6 +4,44 @@
4
4
 
5
5
  No unreleased changes yet.
6
6
 
7
+ ## 0.1.2
8
+
9
+ ### Contract Compatibility
10
+
11
+ - Documents the canonical `synapsor.contract.json` path for contracts produced
12
+ by the DSL, Cloud, or the C++ exporter.
13
+ - Adds OSS-side conformance notes for C++/Cloud export snapshots that validate
14
+ with `@synapsor/spec` and load in Runner.
15
+ - Keeps `@synapsor/runner` publishable after `0.1.1` by reserving the next
16
+ stable patch version for this contract round-trip readiness pass.
17
+
18
+ ## 0.1.1
19
+
20
+ ### Launch Readiness
21
+
22
+ - Reworked the README and packaged npm README so the first screen leads with
23
+ the `execute_sql` risk, the reviewed-business-action alternative, badges,
24
+ and the no-database quick demo.
25
+ - Added the self-contained `examples/support-billing-agent/` flagship demo with
26
+ schema, seed data, reviewed contract, app-boundary note, one-command
27
+ `make demo`, and the exact model-facing tools:
28
+ `support.inspect_ticket`, `support.propose_plan_credit`,
29
+ `billing.inspect_invoice`, and `billing.propose_late_fee_waiver`.
30
+ - Added copy-paste example entry points for raw SQL vs Synapsor,
31
+ Claude Desktop, Cursor, OpenAI Agents SDK over Streamable HTTP and stdio, and
32
+ MySQL refund review.
33
+ - Added agent-native repo guidance files for Codex/Claude/Cursor/Copilot and
34
+ verified in a temp copy that an agent can create an inspect/propose
35
+ capability with non-interactive CLI commands without reading generated
36
+ `dist/` files.
37
+ - Restructured the docs index into a task-first path from quickstart to raw SQL
38
+ risk, demo, own database setup, capability generation, MCP serving,
39
+ propose/approve/apply, replay/audit, app-owned handlers, and concepts.
40
+ - Added release-gate and repo hygiene assets, including issue/PR templates,
41
+ threat model/security references, README badges, and package metadata.
42
+ - Hardened package building so generated `.synapsor` local ledgers are not
43
+ shipped in npm examples.
44
+
7
45
  ## 0.1.0
8
46
 
9
47
  ### Stable Channel