Loading...
Loading...
AE/TE/ThinkingEngine/ThinkingAI ae-cli manual for AI Agent Team tasks: managing teams (list, create, update, delete, AI-generate, templates) and executing TeamRuns (start, chat, cancel, reply, result, artifacts). Use when the user asks to find a team, run a team task, check run status, retrieve results or artifacts, or set up multi-agent workflows. Must use ae-cli, read the matching references/<command>.md before composing commands, and never guess team IDs, run IDs, config structures, or parameter formats.
npx skill4agent add thinkingaiagenticengine/ae-cli ae-teamCRITICAL — Before running anycommand, you MUST first read the corresponding+<command>. The reference filename equals the command name without the leadingreferences/<command>.md, for example+→+run-start. CRITICAL — Never guess team IDs, run IDs, or config JSON structures. Always usereferences/run-start.mdor+listto discover real resources first. CRITICAL — For the core Agent workflow (find → start → poll → artifacts), follow Workflow A in the Typical Workflows section below.+list-templates
ae-cli| Parameter | Description |
|---|---|
| Output format. Default is JSON. |
| jq filter expression for JSON output. |
| Override the active AE host. Available on every command and may be placed after the subcommand, e.g. |
| Skip confirmation for |
| Show request details without executing. |
_notice.host_compat{ "ok": false, "error": { "type": "...", "message": "...", "hint": "..." } }_notice.host_compatnpm i -gnpx skills addok: true+list+list-templates+list-projects+run-result+run-artifacts+ai-generatewritehigh-risk-write--yesagentIdmcpServerIdsskillIdsknowledgeBaseIdsae-teamae-analysisae-dataopsae-engageae-cli team +<command> [options]teamae-cli team --help
ae-cli team +list --help
ae-cli team +run-start --help+list+create+update+delete+ai-generate+list-templates+list-projects+run-start+run-watch+run-chat+run-cancel+run-replywaiting_user+run-result+run-artifacts| Status | Description |
|---|---|
| Queued, waiting to start |
| Actively executing |
| Paused — |
| Paused — waiting for approval |
| Manually paused |
| Finished successfully |
| Execution failed |
| Cancelled by user |
completedfailedcancelled+run-result# 1. Discover available teams
ae-cli team +list
# 2. (Optional) Discover project IDs if needed
ae-cli team +list-projects
# 3. Start a run
ae-cli team +run-start --team-id <team_id> --input "分析上周用户留存数据"
# 4. Stream until done (blocks; no polling needed)
ae-cli team +run-watch --id <run_id>
# exit 0 → completed/partial_success → go to step 5
# exit 1 → failed/cancelled → inspect errorMessage in output, report to user
# exit 2 → waiting_user → go to step 4a
# 4a. Handle waiting_user: read pendingQuestion from stdout, get user's answer, reply, re-watch
ae-cli team +run-reply --id <run_id> --input "<user_answer>"
ae-cli team +run-watch --id <run_id> # repeat until exit 0 or 1
# 5. Retrieve artifacts
ae-cli team +run-artifacts --id <run_id> --include-content true# 1. Generate a draft config
ae-cli team +ai-generate --prompt "需要一个分析用户行为并自动生成留存报告的团队"
# 2. Create the team (paste / adjust the returned config)
ae-cli team +create --name "留存分析团队" --config '<config_json>'
# 3. Start a run
ae-cli team +run-start --team-id <new_team_id> --input "分析本月留存"# First turn
ae-cli team +run-chat --team-id <team_id> --input "帮我分析DAU趋势"
# If run status is waiting_user, reply:
ae-cli team +run-reply --id <run_id> --input "请重点分析周末下降原因"
# Continue same session
ae-cli team +run-chat --team-id <team_id> --session-id <session_id> --input "给出优化建议"# 1. Browse templates
ae-cli team +list-templates --locale zh
# 2. Create from a template's config
ae-cli team +create --name "我的分析团队" --config '<template_config>'ae-cli team --help