Agent skill
character-design
Extract character entities from narrative text. Use when analyzing characters, relationships, psychology, development arcs, voice/mocap data, and character variants.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/character-design
SKILL.md
character-design
Domain skill for character extraction.
Entity Types
| Type | Description |
|---|---|
character |
Main character entity with name, role, personality, motivation |
character_evolution |
Character development arc or growth moment |
character_profile_entry |
Backstory detail or profile information |
character_relationship |
Relationship between two characters |
character_variant |
Alternate version, iteration, or form |
voice_actor |
Voice acting information |
motion_capture |
Motion capture performance data |
Extraction Rules
- Identify characters: Named characters with dialogue/actions, referred-to characters, groups
- Extract details: Name, role, status, personality traits, motivations, goals
- Track development: Growth moments, realizations, motivation changes
- Map relationships: Type (friend, rival, family, romantic), strength, dynamics
- Note variants: Alternate forms, timelines, disguises
Domain Constraints
backstory: minimum 100 charactersability.power_level: integer 1–10combat_stats: attack, defense, health, speed ≥ 0status: "active" or "inactive"
Output Format
Write to entities/narrative.json (narrative-team file):
{
"characters": [
{
"id": 1,
"world_id": 1,
"name": "Kira",
"backstory": "... minimum 100 characters ...",
"status": "active",
"abilities": [
{ "name": "Flame Mastery", "description": "...", "power_level": 8 }
],
"created_at": "2026-02-14T10:00:00+00:00",
"updated_at": "2026-02-14T10:00:00+00:00",
"version": 1
}
],
"character_relationships": [
{
"id": 2,
"character_from_id": 1,
"character_to_id": 3,
"relationship_type": "friend",
"description": "Strong friendship forged through shared battles",
"relationship_level": 60,
"is_mutual": true,
"created_at": "2026-02-14T10:00:00+00:00",
"updated_at": "2026-02-14T10:00:00+00:00",
"version": 1
}
],
"next_id": 3
}
Key Considerations
- Uniqueness: Each character has a unique ID; name variations reference the same ID
- Implicit relationships: Track both explicit and implied connections
- Cross-references: If needed, track relationships separately in drafts, but final JSON must be compatible with
LoreData.from_dict.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?