agentsclimarketplace

Agents

Skill mj-deving/pai-skills/skills/Agents

Curated, sanitized export of 21 agent-skill packages for Claude Code and Codex, gated by an automated publication audit (no secrets, no local paths).

Install
npx -y skills add mj-deving/pai-skills --skill Agents

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Compose CUSTOM agents from Base Traits + Voice + Specialization for specialized perspectives. USE WHEN create custom agents, spin up agents, specialized agents, agent personalities, available traits, list traits, agent voices, compose agent, load agent context, agent profile, spawn parallel agents, launch agents. NOT for agent teams/swarms (use Delegation skill β†’ TeamCreate) or Codex delegation (use Delegation skill β†’ CodexBridge).

SKILL.md

10.8 KB, as published. Nobody here has run it

🚨 SCOPE BOUNDARY β€” This Skill vs Agent Teams

{PRINCIPAL.NAME} SaysWhich SystemNOT This Skill?
"custom agents", "spin up agents", "launch agents"THIS SKILL (Agents) β†’ ComposeAgent β†’ Task(subagent_type="general-purpose")
"create an agent team", "agent team", "swarm"Delegation skill β†’ TeamCreate toolYES β€” NOT this skill
"ask codex", "consult codex", "codex review", "codex json output"Delegation skill β†’ Utilities/CodexBridge wrappersYES β€” NOT this skill

If {PRINCIPAL.NAME} says "agent team", "swarm", or asks to consult Codex, do NOT use this skill. Use Delegation routing (TeamCreate or CodexBridge).

  • This skill = one-shot parallel workers with unique identities, NO shared state, fire-and-forget
  • Agent teams (Delegation β†’ TeamCreate) = persistent coordinated teams with shared task lists, messaging, multi-turn collaboration

<!-- ## 🚨 MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION) **You MUST send this notification BEFORE doing anything else when this skill is invoked.** 1. **Send voice notification**: ```bash curl -s -X POST http://localhost:8888/notify \ -H "Content-Type: application/json" \ -d '{"message": "Running the WORKFLOWNAME workflow in the Agents skill to ACTION"}' \ > /dev/null 2>&1 & ``` -->
  1. Output text notification:
    Running the **WorkflowName** workflow in the **Agents** skill to ACTION...
    

This is not optional. Execute this curl command immediately upon skill invocation.

Agents - Custom Agent Composition System

Auto-routes when user mentions custom agents, agent creation, or specialized personalities. Does NOT handle agent teams/swarms β€” that's Delegation skill β†’ TeamCreate.

Configuration: Base + User Merge

The Agents skill uses the standard PAI SYSTEM/USER two-tier pattern:

LocationPurposeUpdates With PAI?
Data/Traits.yamlBase traits, example voicesYes
USER/SKILLCUSTOMIZATIONS/Agents/Traits.yamlYour voices, prosody, agentsNo

How it works: ComposeAgent.ts loads base traits, then merges user customizations over them. Your customizations are never overwritten by PAI updates.

User Customization Directory

Create your customizations at:

${PAI_USER_DIR}/SKILLCUSTOMIZATIONS/Agents/
β”œβ”€β”€ Traits.yaml       # Your traits, voices, prosody settings
β”œβ”€β”€ NamedAgents.md    # Your named agent backstories (optional)
└── VoiceConfig.json  # Voice server configuration (optional)

Voice Prosody Settings

Each voice can have prosody settings that control how it sounds. These are passed to ElevenLabs API.

Prosody Parameters

ParameterRangeDefaultEffect
stability0.0-1.00.5Low = expressive/varied, High = consistent/monotone
similarity_boost0.0-1.00.75Voice identity preservation
style0.0-1.00.0Style exaggeration (higher = more dramatic)
speed0.7-1.21.0Speech rate
use_speaker_boostbooleantrueEnhanced clarity (adds latency)

Example Voice Configuration

In your USER/SKILLCUSTOMIZATIONS/Agents/Traits.yaml:

voice_mappings:
  voice_registry:
    # Add a new voice with full prosody settings
    MyCustomVoice:
      voice_id: "your-elevenlabs-voice-id"
      characteristics: ["energetic", "warm", "professional"]
      description: "Custom voice for enthusiastic agents"
      prosody:
        stability: 0.40
        similarity_boost: 0.75
        style: 0.30
        speed: 1.05
        use_speaker_boost: true

    # Override prosody for an existing base voice
    {PRINCIPAL.NAME}:
      prosody:
        stability: 0.65
        style: 0.10
        speed: 0.92

Personality β†’ Prosody Guidelines

PersonalitystabilitystylespeedRationale
Skeptical0.600.100.95Measured, precise
Enthusiastic0.350.401.10High energy
Analytical0.650.080.95Clear, structured
Bold0.450.351.05Confident, dynamic
Cautious0.700.050.90Careful, deliberate

Overview

The Agents skill is a complete agent composition and management system:

  • Dynamic agent composition from traits (expertise + personality + approach)
  • Voice mappings with full prosody control
  • Custom agent creation with unique voices
  • Parallel agent orchestration patterns

Workflow Routing

Available Workflows:

  • CREATECUSTOMAGENT - Create specialized custom agents β†’ Workflows/CreateCustomAgent.md
  • LISTTRAITS - Show available agent traits β†’ Workflows/ListTraits.md
  • SPAWNPARALLEL - Launch parallel agents β†’ Workflows/SpawnParallelAgents.md

Route Triggers

CRITICAL: The word "custom" is the KEY trigger for unique agent identities:

User SaysWhat to UseWhy
"custom agents", "create custom agents"ComposeAgent + general-purposeUnique personalities, voices, colors
"agents", "launch agents", "bunch of agents"SpawnParallel workflowSame identity, parallel grunt work
"use [named agent]"Named agentPre-defined personality from USER config

NEVER use static agent types (Architect, Engineer, etc.) for custom agents β€” always use general-purpose with ComposeAgent prompts.

Components

Data

Traits.yaml (Data/Traits.yaml) - Base configuration:

  • Core expertise areas: security, technical, research
  • Core personalities: skeptical, analytical, enthusiastic
  • Core approaches: thorough, rapid, systematic
  • Example voice mappings with prosody

Tools

ComposeAgent.ts (Tools/ComposeAgent.ts)

  • Dynamic agent composition engine
  • Merges base + user configurations
  • Outputs complete agent prompt with voice settings
  • Supports persistent custom agents via --save / --load / --delete
# Compose and use immediately
bun run ${CLAUDE_SKILL_DIR}/Tools/ComposeAgent.ts --task "Review security"
bun run ${CLAUDE_SKILL_DIR}/Tools/ComposeAgent.ts --traits "security,skeptical,thorough"

# Persistent custom agents
bun run ${CLAUDE_SKILL_DIR}/Tools/ComposeAgent.ts --task "Security review" --save
bun run ${CLAUDE_SKILL_DIR}/Tools/ComposeAgent.ts --list-saved
bun run ${CLAUDE_SKILL_DIR}/Tools/ComposeAgent.ts --load "security-expert-skeptical-thorough"
bun run ${CLAUDE_SKILL_DIR}/Tools/ComposeAgent.ts --delete "security-expert-skeptical-thorough"

# Other options
bun run ${CLAUDE_SKILL_DIR}/Tools/ComposeAgent.ts --list
bun run ${CLAUDE_SKILL_DIR}/Tools/ComposeAgent.ts --output json

JSON output includes:

{
  "name": "Security Expert Skeptical Thorough",
  "voice": "{PRINCIPAL.NAME}",
  "voice_id": "onwK4e9ZLuTAKqWW03F9",
  "voice_settings": {
    "stability": 0.70,
    "similarity_boost": 0.85,
    "style": 0.05,
    "speed": 0.95,
    "use_speaker_boost": true
  },
  "prompt": "..."
}

Templates

DynamicAgent.hbs (Templates/DynamicAgent.hbs)

  • Handlebars template for dynamic agent prompts
  • Composes: expertise + personality + approach + voice assignment
  • Includes operational guidelines and response format

Architecture

Hybrid Agent Model

TypeDefinitionBest For
Named AgentsPersistent identities defined in USER configRecurring work, relationships
Dynamic AgentsTask-specific specialists composed from traitsOne-off tasks, parallel work

The Agent Spectrum

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚   NAMED AGENTS          HYBRID USE          DYNAMIC AGENTS          β”‚
β”‚   (Relationship)        (Best of Both)      (Task-Specific)         β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ Defined in USER     "Security expert       Ephemeral specialist     β”‚
β”‚ NamedAgents.md      with [named agent]'s   composed from traits     β”‚
β”‚                      skepticism"                                     β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Examples

Example 1: Create custom agents

User: "Spin up 3 custom security agents"
β†’ Invokes CREATECUSTOMAGENT workflow
β†’ Runs ComposeAgent 3 times with DIFFERENT trait combinations
β†’ Each agent gets unique personality + matched voice + prosody
β†’ Launches agents in parallel

Example 2: List available traits

User: "What agent personalities can you create?"
β†’ Invokes LISTTRAITS workflow
β†’ Shows merged base + user traits
β†’ Displays voices with prosody settings

Extending the Skill

Adding Your Own Traits

In USER/SKILLCUSTOMIZATIONS/Agents/Traits.yaml:

# Add new expertise areas
expertise:
  marketing:
    name: "Marketing Expert"
    description: "Brand strategy, campaigns, market positioning"
    keywords:
      - marketing
      - brand
      - campaign
      - positioning

# Add new personalities
personality:
  visionary:
    name: "Visionary"
    description: "Forward-thinking, sees the big picture"
    prompt_fragment: |
      You think in terms of future possibilities and long-term vision.
      Connect today's work to tomorrow's potential.

Adding Named Agents

In USER/SKILLCUSTOMIZATIONS/Agents/NamedAgents.md:

## Alex - The Strategist

**Voice ID:** your-voice-id
**Prosody:** stability: 0.55, style: 0.20, speed: 0.95

Alex is a strategic thinker who sees patterns others miss...

Model Selection

Task TypeModelSpeed
Grunt work, simple checkshaiku10-20x faster
Standard analysis, researchsonnetBalanced
Deep reasoning, architectureopusMaximum quality

Version History

  • v2.0.0 (2026-01): Restructured to base + user merge pattern, added prosody support
  • v1.0.0 (2025-12): Initial creation

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.