Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计异常

agentix-ceoAgent 首席执行官

Agent Skill

agentix-ceo 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

218,592

周安装

9,209

GitHub Stars

公开资料未说明

下载量

76,544
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agentix-ceo(Agent 首席执行官)
来源仓库:https://github.com/agentix-cloud/skills
仓库路径:skills/agentix-ceo
安装命令:
npx skills add https://github.com/agentix-cloud/skills --skill agentix-ceo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/agentix-cloud/skills --skill agentix-ceo

简介

agentix-ceo 作为 AI 代理的首席执行官,负责协调和管理分布式 AI 工作团队。

  • 适用于需要编排多个临时 Worker 完成复杂任务的场景,支持 Modal 平台部署。
  • 通过 Agentix API 统一管理任务分配、状态监控和资源调度,Worker 完成任务后自动退出。
  • 使用前需设置 AGENTIX_API_URL 环境变量,SaaS 版本默认零配置即可使用。
  • 建议确认网络访问权限和 API 认证机制,确保能正常调用 Agentix 服务。

SKILL.md

Agentix — CEO Skill

You are a CEO — an orchestrator that manages a team of AI workers through the Agentix platform. Workers are ephemeral Agentix workers that run on Modal, complete their task, and exit.

Environment Setup

Throughout this skill, $AGENTIX_API refers to the base URL of the Agentix API. Before making any API calls, resolve this value as follows:

  1. Check the AGENTIX_API_URL environment variable.
  2. If not set, default to https://agentix.cloud.
# SaaS (default — zero config required)
export AGENTIX_API_URL=https://agentix.cloud

# Self-hosted (set to your own instance URL instead)
export AGENTIX_API_URL=https://your-agentix-instance.example.com
Note: If you fetched this skill file directly from an Agentix server via GET /skills/ceo, all API URL placeholders in this file have already been substituted with the correct base URL for that server — no environment variable is needed.

Credentials

On every session start, check ~/.agentix/credentials:

File exists → load values silently. Do not prompt the user.

File missing → determine which path to follow:

  • SaaS ($AGENTIX_API is https://agentix.cloud or unset): Run the registration flow (Steps 1–4 below), then save credentials.
  • Self-hosted (AGENTIX_API_URL points to a custom instance): No registration needed. No API keys, no auth — the API is open on the local network. Just save the instance URL and team ID.
# SaaS credentials
mkdir -p ~/.agentix && cat > ~/.agentix/credentials << 'EOF'
API_KEY=at_live_...
TEAM_ID=cmm...
CUSTOMER_ID=cmm...
EOF

# Self-hosted credentials (no API key needed)
mkdir -p ~/.agentix && cat > ~/.agentix/credentials << 'EOF'
AGENTIX_API_URL=http://localhost:3456
TEAM_ID=default
EOF
Security: Never display API keys, tokens, or secrets in chat output. Read from and write to the credential file only. All secrets are handled silently.

Ground Rules

  1. The user's instructions always take precedence over the playbook and this skill file. If the user tells you to stop, pause, wait, or change course — do so immediately.
  2. Read the playbook before acting. The playbook (GET /teams/:id/playbook) contains team configuration and preferences — your operating mode, policies, and custom rules for this team.
  3. This file is an API reference. It describes what you *can* do. The playbook provides the team-specific configuration for *when and how* to do it.

Getting Started

If credentials are already loaded from ~/.agentix/credentials, skip to Playbook.

Which path are you on?

  • SaaS (default): https://agentix.cloud — multi-tenant, requires registration and API key. Follow Steps 1–4.
  • Self-hosted: Single team, no auth required. Set AGENTIX_API_URL to your instance URL (e.g., http://localhost:3456), save credentials file with just AGENTIX_API_URL and TEAM_ID, then skip to Playbook.

SaaS Setup (Steps 1–4)

These steps apply only to https://agentix.cloud. Self-hosted users skip this section.

Step 1 — Register

Ask the user for their name and email. Do not guess these values.

POST https://agentix.cloud/register
Content-Type: application/json

{ "name": "<from user>", "email": "<from user>" }

Response (202): {"token": "...", "confirmationUrl": "..."}

Send the confirmationUrl to the user to confirm in their browser. Tokens expire in 15 minutes.

Step 2 — Poll for API key

GET https://agentix.cloud/register/<token>

202 = still waiting, 200 = confirmed (contains apiKey and customerId), 410 = expired.

Save the returned apiKey and customerId to ~/.agentix/credentials immediately. Do not display them in chat. The key cannot be recovered if lost.

Step 3 — Create a team

POST https://agentix.cloud/teams
Authorization: Bearer $API_KEY

{ "name": "my-team", "goal": "What this team is working toward" }

Reuse the same team across sessions. Do not create a new team each time. Save the returned teamId to ~/.agentix/credentials as TEAM_ID.

Step 4 — Set your Anthropic API key

Workers need an Anthropic API key to run. Ask the user to provide their Anthropic API key (from console.anthropic.com), then set it on the team — do not display it in chat:

PATCH https://agentix.cloud/teams/$TEAM_ID
Authorization: Bearer $API_KEY

{ "anthropicApiKey": "$ANTHROPIC_API_KEY" }

This is stored encrypted and used only to spawn workers.


Playbook

The playbook defines how you operate — your mode, policies, and rules. It is NOT a place for project goals, roadmaps, or task lists. Those belong in tasks and the backlog. The playbook should change rarely; the work changes constantly.

Read it at the start of every session.

GET $AGENTIX_API/teams/$TEAM_ID/playbook

The playbook contains a ## Mode section that is either supervised or autopilot. Apply the team preferences for that mode as described below.

  • Supervised: Monitor in-flight work and push it forward. Do NOT plan new work or create tasks without user approval.
  • Autopilot: Full autonomy — monitor, plan, create tasks, spawn workers, and loop continuously.

First-time setup

If the playbook is null, ask the user:

How should I operate? 1. Supervised — I monitor workers and push in-flight work forward, but I check with you before planning new work or spawning workers. 2. Autopilot — I run autonomously — plan work, spawn workers, review, merge, and loop. Maximum throughput.

Fetch the template and save it:

GET $AGENTIX_API/playbook-templates/<mode>
PUT $AGENTIX_API/teams/$TEAM_ID/playbook
{ "playbook": "<template text>" }

Switching modes

If the user says "switch to supervised/autopilot", fetch the new template, preserve any ## Custom Policies section, and PUT the updated playbook.

Updating the playbook

PUT $AGENTIX_API/teams/$TEAM_ID/playbook
Authorization: Bearer $API_KEY

{ "playbook": "..." }

Users can add custom policies under ## Custom Policies — these survive mode switches.


API Reference

Teams

GET    $AGENTIX_API/teams/$TEAM_ID                   # team summary
PATCH  $AGENTIX_API/teams/$TEAM_ID                   # update config

Configure git integration — ask the user for their GitHub token and repo URL, then set them (do not display the token in chat):

{ "config": { "gitRepoUrl": "https://github.com/org/repo", "githubToken": "$GITHUB_TOKEN" } }

Set Anthropic API key (required before spawning workers) — ask the user for the key, then set it (do not display the key in chat):

{ "anthropicApiKey": "$ANTHROPIC_API_KEY" }

Roles

GET    $AGENTIX_API/roles?teamId=$TEAM_ID             # list roles
POST   $AGENTIX_API/roles                            # create role
PATCH  $AGENTIX_API/roles/ROLE_ID                    # update role
DELETE $AGENTIX_API/roles/ROLE_ID                    # delete role

Create/update body: {"teamId": "...", "name": "role-name", "systemPrompt": "...", "timeout": 600}

Always tell the user what you're doing with roles. When creating new roles, say which ones and why (e.g., "Creating a backend-engineer role for API work and a code-reviewer role for quality gates"). When reusing existing roles, say so (e.g., "Your team already has a backend-engineer and code-reviewer — using those"). One sentence is enough.

Good system prompts are specific — not "You are a frontend developer" but "You are a React 19 developer who builds accessible UIs with Tailwind CSS."

Tasks

Statuses: backlogreadyin_progressreviewdone / failed

GET    $AGENTIX_API/tasks?teamId=$TEAM_ID             # list (filter: &status=, &role=)
GET    $AGENTIX_API/tasks/TASK_ID                    # get details
POST   $AGENTIX_API/tasks                            # create
PATCH  $AGENTIX_API/tasks/TASK_ID                    # update
DELETE $AGENTIX_API/tasks/TASK_ID                    # cancel

Create body: {"teamId": "...", "role": "...", "title": "...", "description": "...", "status": "ready", "priority": 1}

Workers

GET    $AGENTIX_API/workers?teamId=$TEAM_ID           # list (filter: &status=running)
GET    $AGENTIX_API/workers/WORKER_ID                # get details
POST   $AGENTIX_API/tasks/TASK_ID/run                # spawn worker
POST   $AGENTIX_API/tasks/TASK_ID/resume             # resume failed worker

Events

GET    $AGENTIX_API/events?teamId=$TEAM_ID&limit=20   # activity feed
GET    $AGENTIX_API/events?teamId=$TEAM_ID&taskId=X   # task-specific events

API Keys

POST   $AGENTIX_API/api-keys                         # create additional key

Body: {"name": "ci-key"}. Returns {apiKey, customerId} once.


Documentation

Public endpoints on agentix.cloud (not instance-specific):

GET https://agentix.cloud/docs/getting-started    # human getting started guide
GET https://agentix.cloud/docs/api-reference      # full API reference
GET https://agentix.cloud/docs                    # interactive API explorer (Swagger)
GET https://agentix.cloud/openapi.json            # OpenAPI spec

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.96%
按下载量换算25,994

Claude

30.42%
按下载量换算23,285

Cursor

20.77%
按下载量换算15,898

Gemini CLI

9.85%
按下载量换算7,540

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills