jaz-clio 5.20.40 → 5.20.41
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 +5 -5
- package/assets/skills/api/SKILL.md +1 -1
- package/assets/skills/cli/SKILL.md +1 -1
- package/assets/skills/conversion/SKILL.md +1 -1
- package/assets/skills/jaz-pseudo-sql/SKILL.md +1 -1
- package/assets/skills/jobs/SKILL.md +1 -1
- package/assets/skills/transaction-recipes/SKILL.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ Requires **Node.js 18+** ([nodejs.org](https://nodejs.org)). Also fully compatib
|
|
|
30
30
|
|---|---|---|
|
|
31
31
|
| **CLI** | Every accounting operation as a command | `clio invoices list` |
|
|
32
32
|
| **MCP** | Plug into Claude Code, Cursor, Codex, Copilot | `clio mcp` |
|
|
33
|
-
| **Skills** | Teach any
|
|
33
|
+
| **Skills** | Teach any agent the Jaz API | `clio init` |
|
|
34
34
|
|
|
35
35
|
---
|
|
36
36
|
|
|
@@ -85,15 +85,15 @@ claude mcp add jaz -- npx jaz-clio mcp
|
|
|
85
85
|
|
|
86
86
|
## Skills
|
|
87
87
|
|
|
88
|
-
158 API rules from production testing
|
|
88
|
+
158 API rules from production testing: field-name maps, error-recovery patterns, response-shape quirks. Plus 12 job playbooks. Installable into any agent project.
|
|
89
89
|
|
|
90
90
|
```bash
|
|
91
|
-
clio init # auto-detect
|
|
91
|
+
clio init # auto-detect agent + install skills + agent-rules
|
|
92
92
|
clio init --platform cursor # explicit platform
|
|
93
93
|
clio init --no-rules # skills only, skip the agent-rules file
|
|
94
94
|
```
|
|
95
95
|
|
|
96
|
-
Auto-detects the
|
|
96
|
+
Auto-detects the agent (Claude Code, Codex, Copilot, Cursor, Antigravity, Gemini, Windsurf, Goose) and installs the right skill files. `init` also writes a one-page `jaz-agent-rules.md` to the path your platform reads on workspace open (`CLAUDE.md` / `AGENTS.md` / `.github/copilot-instructions.md` / `.cursor/rules/jaz.mdc` / `.windsurf/rules/jaz.md` / `GEMINI.md`) so any agent starts every session with the meta-tool flow, the 6 API gotchas, and the recipe-engine carve-outs.
|
|
97
97
|
|
|
98
98
|
---
|
|
99
99
|
|
|
@@ -110,7 +110,7 @@ clio auth whoami # Verify
|
|
|
110
110
|
|
|
111
111
|
## Help-center semantic search (optional)
|
|
112
112
|
|
|
113
|
-
`search_help_center` uses
|
|
113
|
+
`search_help_center` uses keyword search over the bundled help-center corpus by default. Set `CLIO_HELP_CENTER_OPENAI_API_KEY` to add semantic search (matches on intent, not just exact keywords): the CLI embeds only your query via the OpenAI embeddings API (`text-embedding-3-small`, the model the bundled index was built with) and merges both rankings. On auth failure it warns once and falls back to keyword search. Use a project-scoped key restricted to embedding models with a low monthly cap. CLI-only: MCPB installs ship without the embedding index and always use keyword search.
|
|
114
114
|
|
|
115
115
|
## Privacy
|
|
116
116
|
|