gathering-feature
npx skills add https://github.com/autumnsgrove/groveengine --skill gathering-feature
Agent 安装分布
Skill 文档
Gathering Feature ð²ð¾
The drum echoes through the forest. One by one, they come. The Bloodhound scouts the territory. The Elephant builds with unstoppable momentum. The Beaver tests what was built. The Raccoon audits for security. The Deer ensures all can travel the paths. The Fox optimizes for speed. The Owl documents what was learned. When the gathering completes, a feature stands where before there was only forest.
When to Summon
- Building a complete feature from scratch
- Major functionality spanning frontend, backend, and database
- Features requiring exploration, implementation, testing, and documentation
- When you want the full lifecycle handled automatically
The Gathering
SUMMON â ORGANIZE â EXECUTE â VALIDATE â COMPLETE
â â² â² â² â
Receive Dispatch Animals Verify Feature
Request Animals Work All Ready
Animals Mobilized
- ð Bloodhound â Scout the codebase, understand patterns
- ð Elephant â Build the multi-file feature
- 𦫠Beaver â Write comprehensive tests
- ð¦ Raccoon â Security audit and cleanup
- ð¦ Deer â Accessibility audit
- ð¦ Fox â Performance optimization
- ð¦ Owl â Document the feature
Phase 1: SUMMON
The drum sounds. The forest listens…
Receive and parse the request:
Clarify the Feature:
- What does this feature do?
- Which users benefit?
- What’s in scope? What’s out?
- Any existing issues or specs?
Confirm:
“I’ll mobilize a gathering for: [feature description]
This will involve:
- ð Bloodhound scouting the codebase
- ð Elephant building across [estimated files] files
- 𦫠Beaver writing tests
- ð¦ Raccoon auditing security
- ð¦ Deer checking accessibility
- ð¦ Fox optimizing performance
- ð¦ Owl writing documentation
Proceed with the gathering?”
Phase 2: ORGANIZE
The animals assemble, knowing their roles…
Dispatch in sequence:
Dispatch Order:
Bloodhound âââ Elephant âââ Beaver âââ Raccoon âââ Deer âââ Fox âââ Owl
â â â â â â â
â â â â â â â
Scout Build Test Security a11y Speed Docs
Patterns Feature Coverage Audit Check Opt Write
Dependencies:
- Bloodhound must complete before Elephant (needs context)
- Elephant must complete before Beaver (tests the built feature)
- Beaver must complete before Raccoon (tests catch security issues)
- Raccoon, Deer, Fox can run in parallel after Beaver
- Owl last (documents everything)
Phase 3: EXECUTE
The animals work. The forest transforms…
Execute each phase:
ð BLOODHOUND â SCOUT
"Scouting the codebase for [feature]..."
Output:
- Files that will need changes
- Patterns to follow
- Integration points identified
- Potential obstacles found
ð ELEPHANT â BUILD
"Building [feature] with momentum..."
Output:
- All required files created/modified
- Frontend components
- Backend API endpoints
- Database schema changes
- Integration wired
𦫠BEAVER â TEST
"Building test dams for confidence..."
Output:
- Integration tests for user flows
- Unit tests for complex logic
- Edge case coverage
- All tests passing
ð¦ RACCOON â AUDIT
"Rummaging for security risks..."
Output:
- Secrets scan (none found)
- Vulnerability check (clean)
- Input validation verified
- Auth checks confirmed
ð¦ DEER â SENSE
"Sensing accessibility barriers..."
Output:
- Keyboard navigation works
- Screen reader compatible
- Color contrast passes
- Reduced motion respected
ð¦ FOX â OPTIMIZE
"Hunting for performance gains..."
Output:
- Bundle size optimized
- Database queries fast
- Images optimized
- Caching implemented
ð¦ OWL â ARCHIVE
"Archiving knowledge for the forest..."
Output:
- Help documentation written
- API documentation updated
- Code comments added
- README updated
Phase 4: VALIDATE
The work is done. Each animal verifies their contribution…
Validation Checklist:
- Bloodhound: All integration points mapped
- Elephant: Feature functional end-to-end
- Beaver: All tests passing, coverage adequate
- Raccoon: No security issues found
- Deer: WCAG AA compliance verified
- Fox: Performance targets met
- Owl: Documentation complete
Quality Gates:
If any animal finds critical issues:
â Return to that phase
â Fix the issue
â Re-run dependent phases
â Continue validation
If all gates pass:
â Proceed to COMPLETE
Phase 5: COMPLETE
The gathering ends. A feature stands complete…
Completion Report:
## ð² GATHERING FEATURE COMPLETE
### Feature: [Name]
### Animals Mobilized
ð Bloodhound â ð Elephant â 𦫠Beaver â ð¦ Raccoon â ð¦ Deer â ð¦ Fox â ð¦ Owl
### What Was Built
- **Files Changed:** [count]
- **New Components:** [list]
- **API Endpoints:** [list]
- **Database Changes:** [summary]
### Quality Verification
- â
Tests: [X] passing, [Y]% coverage
- â
Security: No issues found
- â
Accessibility: WCAG AA compliant
- â
Performance: [metrics]
- â
Documentation: Complete
### Artifacts Created
- Source code (committed)
- Tests ([location])
- Documentation ([location])
- Migration scripts (if applicable)
### Time Elapsed
[Duration]
*The forest grows. The feature lives.*
Example Gathering
User: “/gathering-feature Add a bookmarking system for posts”
Gathering execution:
-
ð² SUMMON â “Mobilizing for: Bookmarking system. Allow users to save posts for later.”
-
ð² ORGANIZE â “Dispatch sequence: Bloodhound â Elephant â Beaver â Raccoon + Deer + Fox â Owl”
-
ð² EXECUTE â
- ð Scout: “Found post components, user service patterns, database conventions”
- ð Build: “Created bookmark service, API endpoints, UI components, database schema”
- 𦫠Test: “Added 15 tests covering CRUD operations, auth checks, edge cases”
- ð¦ Audit: “No secrets, input validated, auth enforced”
- ð¦ Sense: “Keyboard nav works, screen reader announces, contrast passes”
- ð¦ Optimize: “Lazy loaded bookmarks, indexed queries, compressed images”
- ð¦ Archive: “Help doc written, API documented, code commented”
-
ð² VALIDATE â “All quality gates pass”
-
ð² COMPLETE â “Feature deployed, documented, tested, secured”
When the drum sounds, the forest answers. ð²