Skill Catalog

The npm package bundles exactly eight audited core skills. This page uses the same names and categories as skills_ref/registry.json. Additional skills appear only after import from an installed Codex environment or a trusted repository you explicitly configure. Run weasley-podex skill list for the live installed set.

Natural language: “Show the skill list”, “show info for the browser skill”, and “enable the goal skill” work in chat. Use /skill list for the slash-command version.

Bundled Core Catalog

Search the eight bundled entries by name, description, or category.

Showing 8 of 8 bundled skills

SkillCategoryDescriptionStatus
🌐browserautomationOperate and verify browser sessions through the Weasley Podex CLI.Active
🔧devdevelopmentShared engineering workflow for safe, tested repository changes.Active
🎯dev-pabcdorchestrationPABCD planning, audit, build, check, and delivery gates.Active
📊diagramdocumentationCreate small, accurate diagrams from verified system relationships.Active
🏁goalorchestrationRun persistent goals with explicit progress, verification, and stop conditions.Active
🧠memoryproductivityUse instance-local and cross-instance memory without leaking private context.Active
🔎searchresearchUnified search hub with source-first evidence verification.Active
🤖web-aiautomationUse supported web AI sessions with bounded context and artifact capture.Active

Default Active Skills (8)

Every bundled registry entry has defaultActive: true.

#SkillCategory
1browserautomation
2devdevelopment
3dev-pabcdorchestration
4diagramdocumentation
5goalorchestration
6memoryproductivity
7searchresearch
8web-aiautomation

Installing and Managing Skills

Use actual bundled names for local operations:

weasley-podex skill info browser
weasley-podex skill install goal
weasley-podex skill list

Imported skills

Additional skills appear only after discovery from an installed Codex environment or explicit configuration of a trusted Git repository. Imported names are not bundled capabilities.

export WEASLEY_PODEX_SKILLS_REPO=https://github.com/your-org/trusted-skills.git
weasley-podex skill reset
weasley-podex skill install imported-skill-name
weasley-podex skill info imported-skill-name
Trust boundary: Only configure a repository whose instructions you have reviewed. Without an installed Codex catalog or WEASLEY_PODEX_SKILLS_REPO, reset uses these eight bundled skills and performs no remote skill fetch.

Category Breakdown

CategoryBundledActive by Default
automation22
development11
documentation11
orchestration22
productivity11
research11
Total88

Creating Custom Skills

Add your own domain knowledge by creating a skill directory:

mkdir -p ~/.weasley/podex/skills/my-company
cat > ~/.weasley/podex/skills/my-company/SKILL.md << 'EOF'
# My Company Standards

Internal coding standards and domain knowledge.

## When to Use

Trigger when working on any project in ~/work/ directory.

## Rules

1. Use pnpm instead of npm.
2. All APIs must follow our internal OpenAPI spec.
3. Database migrations use Drizzle ORM.

## Templates

```typescript
// Standard API response format
interface ApiResponse<T> {
  success: boolean;
  data: T;
  error?: string;
  timestamp: string;
}
```
EOF
In-chat: "회사 코딩 표준 스킬 만들어줘" -- the agent can scaffold a custom skill from a natural language description.

Skill File Structure

Every skill is a directory containing at minimum a SKILL.md file. Complex skills may include reference subdirectories:

~/.weasley/podex/skills/imported-skill-name/
  SKILL.md              # Main skill prompt (injected into system prompt)
  references/
    react.md            # Deep guidance for React
    vue.md              # Deep guidance for Vue
    svelte.md           # Deep guidance for Svelte
    tailwind.md         # Tailwind-specific rules

The SKILL.md acts as an orchestrator. It contains high-level rules and references the sub-files when deeper context is needed.

Slash Commands for Skills

CommandDescription
/skill listShow active and reference skill counts in chat
/skill resetSoft reset to defaults (confirmation required)