@@ -7,7 +7,7 @@ This is the meta repository for the AI-Enhanced Python Project Cookiecutter Temp
77| Information | Details |
88| -------------| ---------|
99| ** Purpose** | Create AI-enhanced Python projects with comprehensive development workflows |
10- | ** AI Integration** | OpenCode agents and skills for TDD/BDD development |
10+ | ** AI Integration** | OpenCode agents and skills for TDD development |
1111| ** Quality Standards** | SOLID principles, object calisthenics, 100% coverage |
1212| ** Versioning** | Hybrid major.minor.calver for generated projects |
1313| ** Architecture** | Test-driven development with architect approval workflow |
@@ -37,15 +37,14 @@ python-project-template/
3737│ │ └── skills/
3838│ │ ├── feature-definition/ # SOLID feature planning
3939│ │ ├── prototype-script/ # Quick validation scripts
40- │ │ ├── tdd-bdd/ # Test-driven development
40+ │ │ ├── tdd/ # Test-driven development
4141│ │ ├── signature-design/ # Interface design
4242│ │ ├── implementation/ # TDD implementation
4343│ │ ├── code-quality/ # Quality enforcement
4444│ │ ├── git-release/ # Release management
4545│ │ └── pr-management/ # Pull request workflows
4646│ ├── pyproject.toml # Project configuration
47- │ ├── AGENTS.md # Generated project AI documentation
48- │ └── DEVELOPMENT_WORKFLOW.md # 7-phase development guide
47+ │ └── AGENTS.md # Generated project AI documentation
4948├── .opencode/ # Meta agents for template itself
5049│ ├── agents/template-manager.md # This meta agent
5150│ └── skills/
@@ -61,7 +60,7 @@ When developers use this template, they get:
6160### AI-Powered Development Workflow
62611 . ** Feature Definition** → SOLID principles planning
63622 . ** Prototype Validation** → Quick scripts with real data
64- 3 . ** Test-Driven Development** → BDD tests with pytest/hypothesis
63+ 3 . ** Test-Driven Development** → TDD tests with pytest/hypothesis
65644 . ** Signature Design** → Modern Python interfaces
66655 . ** Architecture Review** → AI architect approval
67666 . ** Implementation** → TDD methodology
@@ -126,7 +125,7 @@ cookiecutter gh:your-username/python-project-template --checkout v1.2.20260312r1
126125- ** @repo-manager ** : Git operations, PRs, and themed releases
127126
128127### Skills Included in Generated Projects
129- - ** feature-definition** , ** prototype-script** , ** tdd-bdd **
128+ - ** feature-definition** , ** prototype-script** , ** tdd**
130129- ** signature-design** , ** implementation** , ** code-quality**
131130- ** git-release** , ** pr-management**
132131- ** create-skill** , ** create-agent**
@@ -136,7 +135,7 @@ cookiecutter gh:your-username/python-project-template --checkout v1.2.20260312r1
136135# In a generated project
137136@developer /skill feature-definition # Define new feature
138137@developer /skill prototype-script # Create prototype
139- @developer /skill tdd-bdd # Write tests
138+ @developer /skill tdd # Write tests
140139@architect # Get design approval
141140@developer /skill implementation # Implement feature
142141@repo-manager /skill pr-management # Create PR
0 commit comments