Agent skill · Documentation

at-zentao

Work ZenTao bugs/tasks end to end: fetch details, confirm understanding, fix, verify, stage with git add, then ask before committing and before writing status back to ZenTao. Supports single items and sequential batches. Use when the user references ZenTao (禅道) bugs or tasks.

kairyougithub.com/kairyouGitHub ↗
claude-codecodexMIT
Install
npx skills add kairyou/agent-tools --skill at-zentao --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 14 KB
Bundled scripts: none
Path: skills/integrations/at-zentao/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 159
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# ZenTao Bug/Task Workflow ## Configuration Primary config lives under a `zentao` key in `~/.agent-tools/config.jsonc` — or `$AGENT_TOOLS_HOME/config.jsonc` when `AGENT_TOOLS_HOME` is set, matching the rest of agent-tools. Every `~/.agent-tools/config.jsonc` below means this resolved path: ```jsonc { "zentao": { "url": "http://zentao.example.com", "account": "...", "password": "..." } } ``` Resolution order (first match wins): - URL: env `ZENTAO_URL` → `zentao.url` in `~/.agent-tools/config.jsonc`. - Credentials: env `ZENTAO_ACCOUNT`/`ZENTAO_PASSWORD` → `zentao.account`/`zentao.password` in `~/.agent-tools/config.jsonc`. ZenTao config comes ONLY from env vars and the global `~/.agent-tools/config.jsonc`, never a repository-level file — so an untrusted repo can't redirect the endpoint to capture your credentials. **First-run setup** (when config is missing or incomplete): 1. If `~/.agent-tools/config.jsonc` has no `zentao` block, insert one INTO the root object (not appended after the closing `}`) — it is JSONC, so preserve existing keys and comments, and mind the trailing comma: `"zentao": { "url": "", "account": "", "password": "" }` 2. Ask for the URL and account as a PLAIN chat

What's inside
Steps it walks through
  1. Configuration
  2. Authentication (once per session)
  3. Usage
  4. API endpoints (verified on ZenTao open source 18.12)
  5. Per-item workflow (follow strictly, in order)
  6. Export mode (export bug <id> / export task <id>)
  7. Batch mode
  8. Hard rules
More from agent-tools
All skills →
About this skill
What does the at-zentao skill do?

Work ZenTao bugs/tasks end to end: fetch details, confirm understanding, fix, verify, stage with git add, then ask before committing and before writing status back to ZenTao. Supports single items and sequential batches. Use when the user references ZenTao (禅道) bugs or tasks.

How do I install it?

Run `npx skills add kairyou/agent-tools --skill at-zentao --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From kairyou/agent-tools, a repository with 159 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going