zentao-api

zentao-api is a skill for Claude Code, Codex from easysoft/zentao-skills. It costs 124 tokens per session (3,355 once invoked), scanned A, original, MIT.

A way to work with ZenTao, a project-management and software-testing system, through its REST API. It covers projects, products, requirements, bugs, tasks, tests, releases, users, files, and other records.

In plain words
What is it for?
Use it to query project progress, list bugs, create or update tasks and requirements, manage test cases, and change record statuses.
Why use it?
It removes the need to manually construct API requests and handles authentication, cached tokens, required fields, and readable result reporting.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to query project progress, list bugs, create or update tasks and requirements, manage test cases, and change record statuses.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/easysoft/zentao-skills/zentao-api
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add easysoft/zentao-skills --skill zentao-api
Clone the repo
git clone --depth 1 https://github.com/easysoft/zentao-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for zentao-api

README.md
[![agentmods](https://agentmods.dev/badge/skills/easysoft/zentao-skills/zentao-api/github.svg)](https://agentmods.dev/skills/easysoft/zentao-skills/zentao-api)
Your own site
<a href="https://agentmods.dev/skills/easysoft/zentao-skills/zentao-api"><img src="https://agentmods.dev/badge/skills/easysoft/zentao-skills/zentao-api/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for zentao-api

Your own site · 80×15
<a href="https://agentmods.dev/skills/easysoft/zentao-skills/zentao-api"><img src="https://agentmods.dev/badge/skills/easysoft/zentao-skills/zentao-api.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 124 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,355 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Tool Misuse · line 220
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
  • medium Data Exfiltration · line 96
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00124 $0.03355
Opus 5 $0.00062 $0.01677
Sonnet 5 $0.00025 $0.00671
Haiku 4.5 $0.00012 $0.00335

Measured 11d ago against content hash 331c4238f310, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

zentao-api scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/get-token.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

脚本依赖:`curl`、`node`
skills-deprecated/zentao-api/SKILL.md · 231 lines

How it starts

The opening of the file, as written. The whole thing — 231 lines — stays where its author put it; the contents beside it link to each section on GitHub.

禅道 API v2.0

配置

优先级从高到低:

变量 说明
ZENTAO_URL 服务器地址,如 http://zentao.example.com
ZENTAO_TOKEN 直接指定 token,跳过登录和缓存(最高优先级),仍需提供服务器地址
ZENTAO_ACCOUNT 登录账号,有 token 时可选,但提供可更好回答与当前用户相关的问题
ZENTAO_PASSWORD 登录密码,有 token 时无需提供

首次登录后 ZENTAO_URLZENTAO_TOKENZENTAO_ACCOUNT 写入 ~/.zentao-token.json,后续无需重复设置

若必要变量缺失,提示用户并给出 export 命令。用户直接提供服务器、账号和密码时直接使用,同时告知尽量设为环境变量。

认证流程

所有业务 API 需在 Header 携带 token。运行 scripts/get-token.sh 自动获取:

eval "$(bash scripts/get-token.sh)"
# 执行后可直接使用 $ZENTAO_URL、$ZENTAO_TOKEN、$ZENTAO_ACCOUNT

脚本依赖:curlnode

后续所有请求 Header 携带:token: $ZENTAO_TOKEN

执行 API 调用的步骤

  1. 运行 eval "$(bash scripts/get-token.sh)" 获取凭证(自动处理缓存;仍缺失时提示用户)
  2. 根据用户意图选择正确的 API 端点(参见 api-reference.md
  3. 若为 PUT 编辑操作且用户未提供全部必填字段,先调用对应 GET 详情接口取回当前数据,再将用户指定的字段覆盖进去
  4. 构造请求(方法、URL、Header、Body)并向用户确认写操作内容
  5. 执行请求,解析响应
  6. 以清晰易读的格式向用户展示结果

模块总览

API 基础路径:$ZENTAO_URL/api.php/v2

模块 资源路径 支持操作
项目集 Program /programs CRUD + 关联产品/项目列表
产品 Product /products CRUD + 关联需求/Bug/用例/计划/发布/反馈/工单/测试单/应用
项目 Project /projects CUD + 关联执行/需求/Bug/用例/版本/测试单
执行 Execution /executions CRUD + 关联需求/任务/Bug/用例/版本/测试单
需求 Story /stories CRUD + change/close/activate
业务需求 Epic /epics CRUD + change/close/activate
用户需求 Requirement /requirements CRUD + change/close/activate
Bug /bugs CRUD + resolve/close/activate
任务 Task /tasks CRUD + start/finish/close/activate
测试用例 Testcase /testcases CRUD
产品计划 Productplan /productplans CUD + 按产品查列表
版本 Build /builds CUD + 按项目/执行查列表
发布 Release /releases CUD + 按产品查列表
测试单 Testtask /testtasks CUD + 按产品/项目/执行查列表
反馈 Feedback /feedbacks CRUD + close/activate
工单 Ticket /tickets CRUD + close/activate
应用 System /systems CU + 按产品查列表
用户 User /users CRUD
文件 File /files 编辑名称 + 删除

Read the full file on GitHub · 231 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 231 lines · 124 tokens per session scan A 331c4238f310

Subscribe to this mod's changes

zentao-api is a skill published in the GitHub repository easysoft/zentao-skills (69 stars, last pushed 27d ago), licensed MIT. It adds 124 tokens to every session and 3,355 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

scaffold-dotnet-test-project

MUST USE when an existing .NET test project was excluded from a .slnf/CI solution filter, disappeared from .sln/.slnx discovery, or lost its production ProjectReference; also for requests to set up, create, reuse, add, register, include, or repair a test project. Handles "tests pass directly but CI discovers zero"…

dotnet/skills · 139 tokens

cy-execute-task

Implement and verify an existing CompozyOS spec task, then update its tracking. Excludes review remediation.

compozy/compozy · 27 tokens

team-qa

Orchestrate the QA team through a full testing cycle. Coordinates qa-lead (strategy + test plan) and qa-tester (test case writing + bug reporting) to produce a complete QA package for a sprint or feature. Covers: test plan generation, test case writing, smoke check gate, manual QA execution, and sign-off report.

Donchitos/Claude-Code-Game-Studios · 73 tokens

gh-issue

Size-audit, write, and split BanyanDB issues that somebody else or an automated TDD workflow can implement. Use whenever the user asks to file or revise an issue, decide whether an issue is too large, make an issue TDD-ready, turn a design into tickets, or split an umbrella into executable leaves. Do not draft or file…

apache/skywalking-banyandb · 91 tokens

implement-feature

Implement an approved feature plan with fresh-context slices, TDD, evidence, and PR-ready output.

HoangNguyen0403/agent-skills-standard · 23 tokens

conductor-implement

Execute tasks from a track's implementation plan following TDD workflow.

rmyndharis/antigravity-skills · 17 tokens