@synapsor/runner 0.1.0 → 0.1.1
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/CHANGELOG.md +27 -0
- package/README.md +683 -245
- package/docs/README.md +82 -47
- package/docs/release-notes.md +21 -0
- package/examples/claude-desktop-postgres/Makefile +6 -0
- package/examples/claude-desktop-postgres/README.md +40 -0
- package/examples/cursor-postgres/Makefile +6 -0
- package/examples/cursor-postgres/README.md +30 -0
- package/examples/mysql-refund-agent/Makefile +4 -0
- package/examples/mysql-refund-agent/README.md +36 -0
- package/examples/openai-agents-http/Makefile +6 -0
- package/examples/openai-agents-http/README.md +14 -0
- package/examples/openai-agents-stdio/Makefile +6 -0
- package/examples/openai-agents-stdio/README.md +14 -0
- package/examples/raw-sql-vs-synapsor/Makefile +11 -0
- package/examples/raw-sql-vs-synapsor/README.md +41 -0
- package/examples/support-billing-agent/Makefile +19 -0
- package/examples/support-billing-agent/README.md +89 -0
- package/examples/support-billing-agent/app/README.md +13 -0
- package/examples/support-billing-agent/db/schema.sql +91 -0
- package/examples/support-billing-agent/db/seed.sql +43 -0
- package/examples/support-billing-agent/docker-compose.yml +13 -0
- package/examples/support-billing-agent/scripts/run-demo.sh +15 -0
- package/examples/support-billing-agent/synapsor.runner.json +233 -0
- package/package.json +22 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,33 @@
|
|
|
4
4
|
|
|
5
5
|
No unreleased changes yet.
|
|
6
6
|
|
|
7
|
+
## 0.1.1
|
|
8
|
+
|
|
9
|
+
### Launch Readiness
|
|
10
|
+
|
|
11
|
+
- Reworked the README and packaged npm README so the first screen leads with
|
|
12
|
+
the `execute_sql` risk, the reviewed-business-action alternative, badges,
|
|
13
|
+
and the no-database quick demo.
|
|
14
|
+
- Added the self-contained `examples/support-billing-agent/` flagship demo with
|
|
15
|
+
schema, seed data, reviewed contract, app-boundary note, one-command
|
|
16
|
+
`make demo`, and the exact model-facing tools:
|
|
17
|
+
`support.inspect_ticket`, `support.propose_plan_credit`,
|
|
18
|
+
`billing.inspect_invoice`, and `billing.propose_late_fee_waiver`.
|
|
19
|
+
- Added copy-paste example entry points for raw SQL vs Synapsor,
|
|
20
|
+
Claude Desktop, Cursor, OpenAI Agents SDK over Streamable HTTP and stdio, and
|
|
21
|
+
MySQL refund review.
|
|
22
|
+
- Added agent-native repo guidance files for Codex/Claude/Cursor/Copilot and
|
|
23
|
+
verified in a temp copy that an agent can create an inspect/propose
|
|
24
|
+
capability with non-interactive CLI commands without reading generated
|
|
25
|
+
`dist/` files.
|
|
26
|
+
- Restructured the docs index into a task-first path from quickstart to raw SQL
|
|
27
|
+
risk, demo, own database setup, capability generation, MCP serving,
|
|
28
|
+
propose/approve/apply, replay/audit, app-owned handlers, and concepts.
|
|
29
|
+
- Added release-gate and repo hygiene assets, including issue/PR templates,
|
|
30
|
+
threat model/security references, README badges, and package metadata.
|
|
31
|
+
- Hardened package building so generated `.synapsor` local ledgers are not
|
|
32
|
+
shipped in npm examples.
|
|
33
|
+
|
|
7
34
|
## 0.1.0
|
|
8
35
|
|
|
9
36
|
### Stable Channel
|