skills$openclaw/zentao
leeguooooo6.9k

by leeguooooo

zentao – OpenClaw Skill

zentao is an OpenClaw Skills integration for ai ml workflows. Use the zentao CLI to login and query ZenTao products and bugs. ZENTAO_URL usually includes /zentao.

6.9k stars8.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026ai ml

Skill Snapshot

namezentao
descriptionUse the zentao CLI to login and query ZenTao products and bugs. ZENTAO_URL usually includes /zentao. OpenClaw Skills integration.
ownerleeguooooo
repositoryleeguooooo/zentao
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @leeguooooo/zentao
last updatedFeb 7, 2026

Maintainer

leeguooooo

leeguooooo

Maintains zentao in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
268 B
SKILL.md
1.6 KB
SKILL.md

name: zentao description: Use the zentao CLI to login and query ZenTao products and bugs. ZENTAO_URL usually includes /zentao. homepage: https://www.npmjs.com/package/@leeguoo/zentao-mcp metadata: {"openclaw":{"emoji":"🐞","install":[{"id":"node","kind":"node","package":"@leeguoo/zentao-mcp","bins":["zentao"],"label":"Install zentao CLI (node)"}]}}

zentao (ZenTao CLI)

Use this skill when the user asks to:

  • login to ZenTao via the CLI
  • list products
  • list bugs for a product
  • view bug details
  • list the user's own bugs

Installation (recommended)

To install globally with pnpm:

pnpm i -g @leeguoo/zentao-mcp

If pnpm is not installed:

npm i -g pnpm
pnpm i -g @leeguoo/zentao-mcp

Login workflow

  1. Run login once:
zentao login \
  --zentao-url="https://zentao.example.com/zentao" \
  --zentao-account="leo" \
  --zentao-password="***"
  1. This writes credentials to:
  • ~/.config/zentao/config.toml (or $XDG_CONFIG_HOME/zentao/config.toml)
  1. Verify:
zentao whoami

IMPORTANT: --zentao-url usually must include /zentao. If login returns HTML 404, the base path is likely missing /zentao.

Commands

List products (simple by default):

zentao products list

List bugs for a product:

zentao bugs list --product 6

Get bug details:

zentao bug get --id 1329

List my bugs (include details):

zentao bugs mine --status active --include-details

Full JSON output:

  • zentao products list --json
  • zentao bugs list --product 6 --json
  • zentao bug get --id 1329 --json
  • zentao bugs mine --include-details --json
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install zentao?

Run openclaw add @leeguooooo/zentao in your terminal. This installs zentao into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/leeguooooo/zentao. Review commits and README documentation before installing.