A Claude Code skill that helps AI assistants correctly and quickly build AI agents using the Deity TSX framework.
When a user asks to build an AI agent, create a workflow, or work with the Deity framework, this skill provides:
- Step-by-step guidance — From project setup to testing
- Decision tables — Automatically select the right template based on user intent
- Copy-paste templates — Real, working code with
// TODOmarkers - Complete API reference — Every type, prop, and utility method
- Production patterns — Proven patterns from real Deity applications
- Built-in tool reference — All tools from
@limo-labs/deity-tools
# Windows (PowerShell as admin)
New-Item -ItemType SymbolicLink -Path "$env:USERPROFILE\.claude\skills\deity-agent-builder" -Target "D:\source\repos\Deity-Skill"
# macOS / Linux
ln -s /path/to/Deity-Skill ~/.claude/skills/deity-agent-buildercp -r Deity-Skill ~/.claude/skills/deity-agent-builderDeity-Skill/
├── SKILL.md # Main entry — process guide with decision tables
├── README.md # This file
├── reference/
│ ├── api-quick-ref.md # Complete API: types, props, signatures
│ ├── patterns.md # 10+ production patterns + anti-patterns
│ └── tools-reference.md # Built-in tools from @limo-labs/deity-tools
└── templates/
├── project-setup.md # tsconfig + package.json + file structure
├── agent-simple.md # Minimal agent (Prompt + Result)
├── agent-with-tools.md # Agent with built-in + custom tools
├── agent-full.md # Full agent (Observe, Validate, Retry)
├── workflow-sequential.md # Sequential workflow with data flow
├── workflow-complex.md # Conditional, Parallel, ForEach, Loop
├── tool-custom.md # Custom tool definition patterns
└── adapter-skeleton.md # LLM adapter implementation
The skill activates when users mention:
- "deity", "agent", "workflow"
- "构建 agent", "创建工作流", "deity 框架"
- Building AI agents, creating workflows, tool integration
- Deity Framework —
@limo-labs/deitycore TSX component API - Deity Tools —
@limo-labs/deity-toolsbuilt-in tool components - Limo-CLI — Production patterns from a real Deity application
MIT