Agent skill
faction-design
Extract faction entities from narrative text. Use when analyzing organizations, hierarchies, ideologies, territories, resources, leaders, banners, and inter-faction relationships.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/faction-design
SKILL.md
faction-design
Domain skill for faction and organization extraction.
Entity Types
| Type | Description |
|---|---|
faction |
Organization, guild, cult, or group |
faction_hierarchy |
Internal power structure |
faction_ideology |
Beliefs, goals, worldview |
faction_leader |
Leadership position or person |
faction_membership |
Member roster or membership info |
faction_resource |
Controlled resources and assets |
faction_territory |
Controlled or influenced territory |
banner |
Faction banner, emblem, or symbol |
Domain Constraints
faction.type: political, religious, military, criminal, magical, merchant, secret, monsterfaction.alignment: good, neutral, evil, chaoticfaction_membership.reputation: integer -1000 to 1000
Extraction Rules
- Named groups: Guilds, armies, cults, orders — extract with exact name
- Implied groups: Bandits, rebels, authorities — create descriptive name
- Hierarchy: Who leads, how power is organized, ranks
- Relationships: Allies, enemies, neutral parties between factions
- Resources: Wealth, military power, information, magic, territory
Output Format
Write to entities/society.json:
{
"factions": [
{
"id": 1,
"world_id": 1,
"name": "Shadow Brotherhood",
"description": "Secret criminal organization operating in the underworld",
"type": "criminal",
"alignment": "evil",
"leader_character_id": null,
"member_character_ids": [],
"allied_faction_ids": [],
"enemy_faction_ids": [],
"headquarters_location_id": null,
"controlled_location_ids": [],
"reputation_hostile_threshold": -500,
"reputation_neutral_threshold": 0,
"reputation_friendly_threshold": 500,
"reputation_exalted_threshold": 1000,
"vendor_discount_at_friendly": 10.0,
"vendor_discount_at_exalted": 25.0,
"exclusive_items_unlocked_at": 750,
"faction_icon_path": null,
"faction_color": null,
"is_hidden": false,
"is_joinable": true,
"created_at": "2026-02-14T10:00:00+00:00",
"updated_at": "2026-02-14T10:00:00+00:00",
"version": 1
}
],
"next_id": 2
}
Key Considerations
- Overlapping membership: Characters may belong to multiple factions
- Hidden factions: Some operate in secret — extract even unnamed ones
- Dynamic relationships: Alliances shift; note current state from text
- Cross-references: If needed, track relationships separately in drafts, but final JSON must match
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?