agent-implementer
Implementation guidance for creating individual agents in the Arcanea system with proper structure, capabilities, and integration.
npx skills add majiayu000/claude-skill-registry --skill agent-implementer-frankxai-arcanea-records --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Agent Implementer Skill ## Purpose Create individual agents for the Arcanea ecosystem with proper structure, capabilities, and integration points. ## When to Use - Adding new agents to the registry - Modifying existing agent capabilities - Creating agent-specific prompts - Implementing agent routing logic - Testing agent performance ## Agent Structure ### Required Properties ```typescript interface Agent { // Identity id: string; // Unique kebab-case ID name: string; // Display name command: string; // Invocation command (/id) // Classification court: string; // Guardian court name element: string; // Fire/Water/Earth/Air/Void frequency: string; // Operating frequency // Capabilities specialty: string; // One-line description capabilities: string[]; // What they can do skills: string[]; // Available skills triggers: string[]; // Activation keywords // Configuration promptTemplate: string; // System prompt template examples: string[]; // Example outputs parameters: ParamSchema; // Input parameters // Metadata version: string; // Agent version author: string; // Creator tier: 'free' | 'premium'; // Access level } ``` ## Implementation Steps ### Step 1: Define Agent Identity **Quest
- Purpose
- When to Use
- Agent Structure
- Required Properties
- Implementation Steps
- Step 1: Define Agent Identity
- Step 2: Define Capabilities
- Step 3: Create Prompt Template
- Step 4: Define Triggers
- Step 5: Set Parameters
- Step 6: Register Agent
- Step 7: Test Agent
- Agent Templates
- Fire Court Agent Template
What does the agent-implementer skill do?
Implementation guidance for creating individual agents in the Arcanea system with proper structure, capabilities, and integration.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill agent-implementer-frankxai-arcanea-records --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
