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.
/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
| Skill | Category | Description | Status | |
|---|---|---|---|---|
| 🌐 | browser | automation | Operate and verify browser sessions through the Weasley Podex CLI. | Active |
| 🔧 | dev | development | Shared engineering workflow for safe, tested repository changes. | Active |
| 🎯 | dev-pabcd | orchestration | PABCD planning, audit, build, check, and delivery gates. | Active |
| 📊 | diagram | documentation | Create small, accurate diagrams from verified system relationships. | Active |
| 🏁 | goal | orchestration | Run persistent goals with explicit progress, verification, and stop conditions. | Active |
| 🧠 | memory | productivity | Use instance-local and cross-instance memory without leaking private context. | Active |
| 🔎 | search | research | Unified search hub with source-first evidence verification. | Active |
| 🤖 | web-ai | automation | Use supported web AI sessions with bounded context and artifact capture. | Active |
Default Active Skills (8)
Every bundled registry entry has defaultActive: true.
| # | Skill | Category |
|---|---|---|
| 1 | browser | automation |
| 2 | dev | development |
| 3 | dev-pabcd | orchestration |
| 4 | diagram | documentation |
| 5 | goal | orchestration |
| 6 | memory | productivity |
| 7 | search | research |
| 8 | web-ai | automation |
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
WEASLEY_PODEX_SKILLS_REPO, reset uses these eight bundled skills and performs no remote skill fetch.Category Breakdown
| Category | Bundled | Active by Default |
|---|---|---|
| automation | 2 | 2 |
| development | 1 | 1 |
| documentation | 1 | 1 |
| orchestration | 2 | 2 |
| productivity | 1 | 1 |
| research | 1 | 1 |
| Total | 8 | 8 |
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
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
| Command | Description |
|---|---|
/skill list | Show active and reference skill counts in chat |
/skill reset | Soft reset to defaults (confirmation required) |