mirror of
https://github.com/msitarzewski/agency-agents.git
synced 2026-08-07 12:10:19 +03:00
zcode: gitignore generated output + add integration README
Bring the ZCode integration in line with the other tools: the 243 generated agent files (integrations/zcode/agents/*.md) are output of `convert.sh`, not source — add a .gitignore rule so they can't be committed, and add integrations/zcode/README.md documenting generate/install (matching the vibe and qwen integration READMEs). Verified: generated agents are now git-ignored, the README is tracked, and check-tools.sh still passes at 16 tools. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01WKnDRWM4izsB8WAXKszhsq
This commit is contained in:
co-authored by
Claude Opus 4.8
parent
72be8b543e
commit
971bf35668
@@ -84,4 +84,5 @@ integrations/osaurus/agency-*/
|
|||||||
integrations/hermes/agency-agents-router/
|
integrations/hermes/agency-agents-router/
|
||||||
integrations/vibe/agents/
|
integrations/vibe/agents/
|
||||||
integrations/vibe/prompts/
|
integrations/vibe/prompts/
|
||||||
|
integrations/zcode/agents/
|
||||||
graphify-out/
|
graphify-out/
|
||||||
|
|||||||
@@ -0,0 +1,29 @@
|
|||||||
|
# ZCode Integration
|
||||||
|
|
||||||
|
[ZCode](https://z.ai) is Z.ai's GLM-based coding agent harness. Each agency
|
||||||
|
agent is rendered as a standalone Markdown agent file with `name` and
|
||||||
|
`description` frontmatter, which ZCode discovers from its agents directory.
|
||||||
|
|
||||||
|
The generated files come from `scripts/convert.sh --tool zcode`, which writes
|
||||||
|
one Markdown file per agency agent into `integrations/zcode/agents/`. Those
|
||||||
|
generated files are not committed (see `.gitignore`); regenerate them locally.
|
||||||
|
|
||||||
|
## Generate
|
||||||
|
|
||||||
|
From the repository root:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./scripts/convert.sh --tool zcode
|
||||||
|
```
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
Run the installer from your target directory:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd /your/project && /path/to/agency-agents/scripts/install.sh --tool zcode
|
||||||
|
```
|
||||||
|
|
||||||
|
Agents install to `~/.config/zcode/agents/<slug>.md` (user scope). Use
|
||||||
|
`--division` / `--agent` to install a subset, or set `ZCODE_AGENTS_DIR` to
|
||||||
|
override the destination.
|
||||||
Reference in New Issue
Block a user