Skip to main content
Trinity
Cloud Code Plugins/Dev Methodology

Dev Methodology

Documentation-driven development methodology for Claude Code projects. Enforces a disciplined 5-phase development cycle with 14 skills, 3 agents, and project memory templates.

Installation

/plugin marketplace add abilityai/abilities
/plugin install dev-methodology@abilityai

Development Cycle

Development cycle: Context Loading, Development, Testing, Documentation, Commit and Review

Initialize the methodology in your project with /dev-methodology:init My Project. This scaffolds all memory files, CLAUDE.md, workflow docs, and testing templates.

Skills

Setup

SkillPurpose
/init [name]Initialize methodology in current project

Core Workflow

SkillPurpose
/read-docsLoad project context at session start
/update-docsUpdate changelog, architecture, requirements
/commit [message]Stage, commit, push, link GitHub Issues
/validate-pr <number>Validate PR against methodology

Feature Development

SkillPurpose
/implement <source>End-to-end feature implementation
/feature-flow-analysis <name>Document feature from UI to database
/sync-feature-flows [range]Batch-update feature flows from changes
/add-testing <name>Add testing section to feature flow

Code Quality and Security

SkillPurpose
/security-checkPre-commit secret detection
/security-analysis [scope]Full OWASP-based security audit
/refactor-audit [scope]Identify complexity and refactoring candidates
/tidy [scope]Audit and clean up repository structure

Project Management

SkillPurpose
/roadmap [command]Query GitHub Issues for priorities

Agents

AgentPurpose
test-runnerTiered test execution (smoke/core/full) with reports
feature-flow-analyzerTraces and documents feature vertical slices
security-analyzerOWASP Top 10 security analysis

Memory Files

After initialization, your project will have:

docs/memory/
├── requirements.md      # SINGLE SOURCE OF TRUTH for features
├── architecture.md      # Current system design
├── roadmap.md           # Prioritized task queue
├── changelog.md         # Timestamped change history
├── feature-flows.md     # Feature flow index
└── feature-flows/       # Individual feature documentation