Skip to main content
Trinity
Cloud Code Plugins/dev-methodology

dev-methodology Plugin

Documentation-driven development methodology for any codebase. Enforces a structured cycle: context loading, development, testing, documentation, and PR validation.

Installation

/plugin install dev-methodology@abilityai

Skills

SkillDescription
/dev-methodology:initScaffold the methodology into your project
/dev-methodology:read-docsLoad project context at session start
/dev-methodology:implementEnd-to-end feature implementation
/dev-methodology:validate-prValidate a PR against the methodology
/dev-methodology:commitCreate well-formatted commits
/dev-methodology:add-testingAdd tests to existing code
/dev-methodology:tidyClean up code
/dev-methodology:refactor-auditReview changed code for reuse, quality, and efficiency
/dev-methodology:roadmapQuery issues for roadmap priorities
/dev-methodology:security-checkQuick security scan
/dev-methodology:security-analysisDeep OWASP-based security analysis
/dev-methodology:feature-flow-analysisCreate or update a feature flow document
/dev-methodology:sync-feature-flowsAnalyze code changes and update affected feature flows
/dev-methodology:update-docsUpdate project documentation after making changes
/dev-methodology:generate-user-docsGenerate user-facing docs from source code

How It Works

Initialize Methodology

/dev-methodology:init

Scaffolds into your project: docs/memory/ (architecture and requirements docs), docs/memory/feature-flows/ (vertical slice documentation), and .claude/skills/ (development playbooks).

Session Start

/dev-methodology:read-docs

Loads project context: architecture overview, current requirements, recent changes, and active feature flows.

Feature Implementation

/dev-methodology:implement #42

End-to-end flow: read the issue and understand requirements, plan the implementation, write code with tests, update documentation, and create a PR.

PR Validation

/dev-methodology:validate-pr 123

Checks: code quality and style, test coverage, documentation updates, security considerations, breaking changes.

Development Cycle

The methodology enforces a 5-phase cycle:

1. Context     2. Plan        3. Implement    4. Document    5. Validate
read-docs      understand     write code      update-docs    validate-pr
               requirements   write tests     feature flows

Security Tools

Quick Scan

/dev-methodology:security-check

Fast checks for common issues: hardcoded secrets, SQL injection patterns, XSS vulnerabilities.

Deep Analysis

/dev-methodology:security-analysis

Comprehensive OWASP-based review: authentication flows, authorization checks, input validation, data exposure.

See Also

Abilities Overview - Full toolkit overview
GitHub: abilityai/abilities - Source repository