zentao-cli

zentao-cli is a skill for Claude Code, Codex from easysoft/zentao-skills. It costs 114 tokens per session (2,662 once invoked), scanned A, original, MIT.

A command-line skill for working with ZenTao, a project-management system for products, projects, tasks, requirements, bugs, tests, releases, users, and related records. It handles login, paging through results, and filtering or sorting data.

In plain words
What is it for?
List or inspect ZenTao records, create and update tasks or requirements, manage bugs and test cases, change statuses, handle releases and feedback, and work with attachments and users.
Why use it?
It lets an agent query and update ZenTao through one CLI instead of manually navigating each project-management area. Credentials are entered through the CLI and are not collected in chat.

Skill for Claude CodeCodex

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

not rated 69repo +1 26d ago A scan Socket: passSnyk: passSkillSpector: warn 114 tokens original MIT

Good fit List or inspect ZenTao records, create and update tasks or requirements, manage bugs and test cases, change statuses, handle releases and feedback, and work with attachments and users.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/easysoft/zentao-skills/zentao-cli
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-cli
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-cli

README.md
[![agentmods](https://agentmods.dev/badge/skills/easysoft/zentao-skills/zentao-cli/github.svg)](https://agentmods.dev/skills/easysoft/zentao-skills/zentao-cli)
Your own site
<a href="https://agentmods.dev/skills/easysoft/zentao-skills/zentao-cli"><img src="https://agentmods.dev/badge/skills/easysoft/zentao-skills/zentao-cli/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-cli

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

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 →

  • medium MCP Rug Pull · line 24
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
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.00114 $0.02662
Opus 5 $0.00057 $0.01331
Sonnet 5 $0.00023 $0.00532
Haiku 4.5 $0.00011 $0.00266

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

Security

Grade A, and why

zentao-cli scanned grade A with 0 findings 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 10d ago.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/zentao-cli/SKILL.md · 268 lines

How it starts

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

禅道 CLI

通过 zentao 命令行工具查询和操作禅道数据。CLI 自动处理认证、分页,支持工作区上下文和数据过滤/排序。

前置准备

安装

npm install -g zentao-cli
# 或 bun install -g zentao-cli
# 或 pnpm install -g zentao-cli
# 或免安装运行:npx zentao-cli

如果用户没有安装,引导用户进行全局安装使用,如果系统存在 bun 或 pnpm 则优先使用 bun 或 pnpm 进行全局安装。

认证

首次执行任意 zentao 命令会自动提示登录。也可显式登录:

zentao login -s https://zentao.example.com -u admin -p 123456

环境变量(优先级低于命令行参数):

变量 说明
ZENTAO_URL 禅道服务地址
ZENTAO_ACCOUNT 用户账号
ZENTAO_PASSWORD 密码
ZENTAO_TOKEN 直接指定 Token(有此变量可省略密码)

登录成功后凭证缓存在 ~/.config/zentao/zentao.json,后续无需重复登录。

凭证安全

  • 用户尚未登录时,不要在对话里收集账号密码。让用户直接在终端执行 zentao login,或执行任意 zentao 命令触发首次自动登录提示,由用户自行输入凭证。
  • 严禁读取本地凭证:ZENTAO_PASSWORD / ZENTAO_TOKEN 环境变量、~/.config/zentao/zentao.json 配置文件。所有禅道数据均通过 zentao 命令获取,凭证由 CLI 内部处理。

命令格式

使用简写方式(推荐):

操作 命令
列表 zentao <module>
详情 zentao <module> <id>
创建 zentao <module> create --field=value
更新 zentao <module> update <id> --field=value
删除 zentao <module> delete <id>
动作 zentao <module> <action> <id>
帮助 zentao <module> help

也支持 --data='JSON' 传入 JSON 数据。

模块与操作速查

模块名 中文 支持的操作
program 项目集 CRUD
product 产品 CRUD
project 项目 CRUD
execution 执行/迭代 CRUD
story 需求 CRUD + activate / change / close
epic 业务需求 CRUD + activate / change / close
requirement 用户需求 CRUD + activate / change / close
bug Bug CRUD + activate / close / resolve
task 任务 CRUD + activate / close / finish / start
testcase 测试用例 CRUD
testtask 测试单 CUD(按产品/项目/执行查列表)
productplan 产品计划 CUD(按产品查列表)
build 版本 CUD(按项目/执行查列表)
release 发布 CUD(按产品查列表)
feedback 反馈 CRUD + activate / close
ticket 工单 CRUD + activate / close
system 应用 CU(按产品查列表)
user 用户 CRUD
file 附件 编辑名称 + 删除

CRUD = 列表 + 详情 + 创建 + 更新 + 删除;CUD = 无独立列表接口,需指定所属范围

Read the full file on GitHub · 268 lines

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. 10d ago First seen · 268 lines · 114 tokens per session scan A f47e952d5e5a

Subscribe to this mod's changes

zentao-cli is a skill published in the GitHub repository easysoft/zentao-skills (69 stars, last pushed 26d ago), licensed MIT. It adds 114 tokens to every session and 2,662 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. 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