Agent skill · AI & Agents

agent-implementer

Implementation guidance for creating individual agents in the Arcanea system with proper structure, capabilities, and integration.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Arcanea Team
Path: skills/agent/agent-implementer-frankxai-arcanea-records/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Purpose
  2. When to Use
  3. Agent Structure
  4. Required Properties
  5. Implementation Steps
  6. Step 1: Define Agent Identity
  7. Step 2: Define Capabilities
  8. Step 3: Create Prompt Template
  9. Step 4: Define Triggers
  10. Step 5: Set Parameters
  11. Step 6: Register Agent
  12. Step 7: Test Agent
  13. Agent Templates
  14. Fire Court Agent Template
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going