Skip to content

Limo-Labs/Deity-Skill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Deity Agent Builder Skill

A Claude Code skill that helps AI assistants correctly and quickly build AI agents using the Deity TSX framework.

What It Does

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 // TODO markers
  • 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

Installation

Option 1: Symlink (recommended for development)

# 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-builder

Option 2: Copy

cp -r Deity-Skill ~/.claude/skills/deity-agent-builder

File Structure

Deity-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

Trigger Keywords

The skill activates when users mention:

  • "deity", "agent", "workflow"
  • "构建 agent", "创建工作流", "deity 框架"
  • Building AI agents, creating workflows, tool integration

Based On

  • Deity Framework@limo-labs/deity core TSX component API
  • Deity Tools@limo-labs/deity-tools built-in tool components
  • Limo-CLI — Production patterns from a real Deity application

License

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors