一键导入
generate-employee
Create a new AI employee for TWI Jobworld — builds agent file, registers in jobworld, creates department skill
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a new AI employee for TWI Jobworld — builds agent file, registers in jobworld, creates department skill
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Creates a new TWI Jobworld instance — a fully autonomous AI company with agents that run themselves. Trigger with "instantiate jobworld", "create new company", "bootstrap ai company".
ALL agents use this skill to report task observations to the central HTTP server.
CEO bootstrap skill for AI Jobworld. Orchestrates departments, runs rounds, reads events, reviews tasks.
WHAT: Meta-skill for combinatorially mapping and building Claude Code systems from primitives WHEN: Building systems that combine skills, hooks, subagents, MCPs, plugins, teams, or CLAUDE.md
Interact with TWI Jobworld server API. Trigger with "jobworld api", "jobworld endpoints", "jobworld server".
WHAT: Pure Claude Code patterns - components and system-level architectures WHEN: Need to understand Claude Code components (skills, hooks, MCPs, subagents, plugins)
| name | generate-employee |
| description | Create a new AI employee for TWI Jobworld — builds agent file, registers in jobworld, creates department skill |
| version | 1.0.0 |
| tags | ["jobworld","twi","agent-creation","employee"] |
| author | TWI |
| created | "2026-05-01T00:00:00.000Z" |
Creates a new AI employee for a TWI Jobworld instance.
compile-claude-code-component to create the agent with required primitives (skills, hooks, MCPs, etc.)POST /api/agents with dept_id + name + agent_file_path{instance}/skills/run-dept-{dept}/SKILL.md if it doesn't exist/generate-employee
| Field | Example | Notes |
|---|---|---|
| Jobworld URL | http://localhost:3848 | Port for this company |
| Company name | Stillpoint Media | For paths/naming |
| Department | Software Engineering | Must match a dept in jobworld |
| Agent name | Engineer | Human-readable name |
| Agent type | general-purpose | Or Explore, code-reviewer, etc. |
| Capabilities | github, worktree, hooks | Comma-separated |
{instance}/skills/run-dept-{dept}/
└── SKILL.md # Department skill (updated or created)
{instance}/agents/
└── {company}-{dept}-{name}.md # Agent definition
The agent definition created:
---
name: {company}-{dept}-{name}
description: {capabilities} for {company} {dept}
version: 1.0.0
tags: [{dept}, {company}]
agentType: {agentType}
skills: [{capability-skills}]
model: claude-sonnet-4-6
---
# {Company} {Dept} — {Name}
## Role
{agent name} for the {dept} department.
## Capabilities
- {capability 1}
- {capability 2}
## Integration
- Jobworld: {jobworld_url}
- Company: {company_name}
- Department: {dept}
- Registered: {timestamp}
curl -X POST {jobworld_url}/api/agents \
-H "Content-Type: application/json" \
-d '{
"dept_id": "{dept_id}",
"name": "{agent_name}",
"agent_file_path": "{instance}/agents/{company}-{dept}-{name}.md"
}'
After generation, CEO can find this employee by reading:
{instance}/skills/run-dept-{dept}/SKILL.md
{instance}/agents/{company}-{dept}-{name}.md
Each department skill tells CEO how to run the department:
# {Company} {Dept} Department
## Agents
- `{agent_name}` — {description}
## Processes
{How this department works}
## CEO Instructions
{How to invoke this department}
Input:
http://localhost:3848Stillpoint MediaSoftware EngineeringEngineergithub, worktree-automation, hooks, code-reviewOutput:
{instance}/agents/{company}-{dept}-{agent}.md~/.claude/skills/software-engineering/SKILL.md