gathering-architecture
npx skills add https://github.com/autumnsgrove/groveengine --skill gathering-architecture
Agent 安装分布
Skill 文档
Gathering Architecture ð²ð¦
The drum echoes high in the canopy. The Eagle soars above, seeing the forest’s patterns. The Swan glides across the lake, elegant designs taking form. The Elephant moves below, building what was envisioned. Together they transform a clearing into a cathedral of codeâsystems that stand for seasons.
When to Summon
- Designing new systems or services
- Major architectural decisions
- Refactoring core infrastructure
- Creating platforms that other features build upon
- When vision, design, and implementation must align
The Gathering
SUMMON â ORGANIZE â EXECUTE â VALIDATE â COMPLETE
â â² â² â² â
Receive Dispatch Animals Verify Architecture
Request Animals Work Design Defined
Animals Mobilized
- ð¦ Eagle â Design system architecture from 10,000 feet
- 𦢠Swan â Write detailed technical specifications
- ð Elephant â Implement the architectural foundation
Phase 1: SUMMON
The drum sounds. The canopy rustles…
Receive and parse the request:
Clarify the System:
- What problem does this solve?
- What are the scale requirements?
- What are the constraints?
- What’s the growth trajectory?
Nature Metaphor:
“Every architecture needs a nature metaphor. What does this system resemble?
- Heartwood (core that holds everything)
- Wisp (gentle guiding light)
- Porch (place to gather and talk)
- Something else?”
Confirm:
“I’ll mobilize an architecture gathering for: [system description]
This will involve:
- ð¦ Eagle designing the high-level architecture
- 𦢠Swan writing the detailed specification
- ð Elephant implementing the foundation
Proceed with the gathering?”
Phase 2: ORGANIZE
The birds circle. The elephant waits below…
Dispatch in sequence:
Dispatch Order:
Eagle âââ Swan âââ Elephant
â â â
â â â
Design Write Build
System Spec Foundation
Dependencies:
- Eagle must complete before Swan (needs architecture vision)
- Swan must complete before Elephant (needs detailed spec)
Phase 3: EXECUTE
The architecture takes form from sky to earth…
Execute each phase:
ð¦ EAGLE â DESIGN
"Soaring above to see the whole system..."
Output:
- System boundaries defined
- Component interactions mapped
- Technology choices documented
- Scale and constraints identified
- Nature metaphor chosen
Artifacts:
- Architecture overview document
- System diagrams
- ADR (Architecture Decision Records)
𦢠SWAN â SPECIFY
"Gliding across to craft the specification..."
Output:
- Detailed technical specification
- API contracts defined
- Database schema designed
- Flow diagrams created
- ASCII art header
- Implementation checklist
Artifacts:
- tech-spec.md with all required sections
- Interface definitions
- Migration plan (if applicable)
ð ELEPHANT â BUILD
"Building the foundation with unstoppable momentum..."
Output:
- Core infrastructure implemented
- Base classes/modules created
- API skeleton established
- Database migrations written
- Essential tests included
Artifacts:
- Working codebase
- Foundation tests
- Setup documentation
Phase 4: VALIDATE
The structure stands. Each animal verifies their work…
Validation Checklist:
- Eagle: Architecture addresses all requirements
- Swan: Specification is complete and implementable
- Elephant: Foundation is solid and tested
Review Points:
After Eagle:
â Review architecture with stakeholders
â Confirm boundaries and trade-offs
â Approve before Swan begins
After Swan:
â Review spec for completeness
â Verify all sections present
â Confirm implementation ready
After Elephant:
â Test foundation thoroughly
â Verify patterns established
â Confirm next features can build upon it
Phase 5: COMPLETE
The gathering ends. Architecture stands ready…
Completion Report:
## ð² GATHERING ARCHITECTURE COMPLETE
### System: [Name]
### Animals Mobilized
ð¦
Eagle â 𦢠Swan â ð Elephant
### Architecture Decisions
- **Pattern:** [e.g., Event-driven microservices]
- **Scale Target:** [e.g., 10k concurrent users]
- **Key Trade-offs:** [summary]
### Artifacts Created
- Architecture Overview (`docs/architecture/[system].md`)
- Technical Specification (`docs/specs/[system]-spec.md`)
- ADRs ([list])
- Foundation Code ([location])
- Base Tests ([location])
### Ready for
- Feature development on this foundation
- Team onboarding using the spec
- Future architecture reviews
### Time Elapsed
[Duration]
*The forest has a new landmark.* ð²
Example Gathering
User: “/gathering-architecture Design the notification system”
Gathering execution:
-
ð² SUMMON â “Mobilizing for: Notification system. Send email, push, SMS to users. Scale: millions of notifications/day.”
-
ð² ORGANIZE â “Sequence: Eagle (architecture) â Swan (spec) â Elephant (foundation)”
-
ð² EXECUTE â
- ð¦ Eagle: “Event-driven: App emits events â Queue â Workers â Providers. Scales horizontally.”
- 𦢠Swan: “Complete spec with flow diagrams, API contracts, provider adapter interface”
- ð Elephant: “Event bus, queue infrastructure, base notification service, database schema”
-
ð² VALIDATE â “Architecture handles scale, spec complete, foundation tested”
-
ð² COMPLETE â “Notification platform ready for feature development”
From vision to foundation, the forest grows. ð²