Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Development Documentation

Internal development documentation for gh-please project.

📁 Structure

docs-dev/
├── adr/                      # Architecture Decision Records
│   ├── 001-command-structure.md
│   ├── 0001-pr-review-command-structure.md
│   └── 0002-llm-friendly-output-formats.md
├── github/                   # GitHub-specific docs
├── issues/                   # Issue analysis and decisions
│   ├── issue-4-graphql-vs-rest.md
│   ├── issue-4-final-decision.md
│   └── issue-4-implementation.md
├── plan/                     # Planning documents
│   └── command-expansion.md
├── roadmap/                  # Roadmap and future plans
├── testing/                  # Testing documentation
│   ├── testing-overview.md
│   ├── SUMMARY.md
│   └── manual-testing-guide.md
├── AVAILABLE_PLUGINS.md      # Plugin catalog
├── CI-CD.md                  # CI/CD setup
├── commit-convention.md      # Commit message convention
├── GH_CLI_PASSTHROUGH.md     # gh CLI passthrough
├── GITHUB_ID_SYSTEMS.md      # GitHub ID systems guide
├── ISSUE_WORKFLOW.md         # Issue development workflow
├── MIGRATION_v0.3.md         # Migration guide
├── PLUGIN_DEVELOPMENT.md     # Plugin development guide
├── plugin.md                 # Plugin system docs
├── PREMIUM_PLUGIN_INSTALLATION.md  # Premium plugin setup
├── PR_REVIEW_WORKFLOW.md     # PR review workflow
├── RELEASE.md                # Release process
├── STANDARDS.md              # Coding standards
├── TDD.md                    # TDD workflow
└── TESTING.md                # Testing guidelines

📚 Key Documents

Development Standards

Workflows & Guides

Architecture

  • adr/ - Architecture Decision Records
    • Command structure decisions
    • PR review command refactoring
    • LLM-friendly output formats

Plugin System

Release & Deployment

Testing

  • testing/ - Testing documentation
    • Testing overview
    • Manual testing guide
    • Test summary

Planning

  • plan/ - Planning documents
  • roadmap/ - Roadmap and future plans
  • issues/ - Issue analysis and technical decisions

🔄 Relationship to User Documentation

This directory (docs-dev/) contains internal development documentation.

For user-facing documentation, see:

  • ../docs/ - Docus-based documentation site (English + Korean)
  • Deployed at: (TBD - after deployment)

📝 Document Guidelines

When to Add Here (docs-dev/)

  • Architecture decisions (ADRs)
  • Development workflows and processes
  • Internal technical discussions
  • Release procedures
  • CI/CD configuration
  • Plugin development internals

When to Add to User Docs (docs/)

  • Feature guides and tutorials
  • Command reference
  • Usage examples
  • Quick start guides
  • API limitations and workarounds
  • Migration guides for users

🔗 Related