From antigravity-awesome-skills
Creates C4 Context-level documentation: system context diagrams, personas, user journeys, features, and external dependencies.
How this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity-awesome-skills:c4-contextThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Working on c4 context level: system context tasks or workflows
resources/implementation-playbook.md.[One-sentence description of what the system does]
[Detailed description of the system's purpose, capabilities, and the problems it solves]
[Mermaid diagram showing system, users, and external systems]
## Context Diagram Template
According to the [C4 model](https://c4model.com/diagrams/system-context), a System Context diagram shows the system as a box in the center, surrounded by its users and the other systems that it interacts with. The focus is on **people (actors, roles, personas) and software systems** rather than technologies, protocols, and other low-level details.
Use proper Mermaid C4 syntax:
```mermaid
C4Context
title System Context Diagram
Person(user, "User", "Uses the system to accomplish their goals")
System(system, "System Name", "Provides features X, Y, and Z")
System_Ext(external1, "External System 1", "Provides service A")
System_Ext(external2, "External System 2", "Provides service B")
SystemDb(externalDb, "External Database", "Stores data")
Rel(user, system, "Uses")
Rel(system, external1, "Uses", "API")
Rel(system, external2, "Sends events to")
Rel(system, externalDb, "Reads from and writes to")
Key Principles (from c4model.com):
When creating context documentation, provide:
npx claudepluginhub sickn33/antigravity-awesome-skills --plugin antigravity-bundle-aas-mobile-app-builderCreates C4 model system context diagrams using Mermaid, documents personas, user journeys, system features, and external dependencies for high-level architecture overviews.
Design high-level system boundary diagrams. Show external systems, users, data flows. Use when onboarding teams or clarifying system scope.
Generates C4 model architecture diagrams and documentation using Mermaid syntax for system context, containers, components, and code levels.