Release v1.7.13
🎯 Overview
This release improves AI coding accuracy by removing unused architecture patterns that could pollute the context and reduce precision when not explicitly selected.
⚠️ Important Changes
Removed Unused Architecture Rules
We've removed the following architecture pattern rules:
- Vertical Slice Architecture
- Hybrid Progressive Architecture
Why this change?
Architecture selection must be done manually by developers. When these patterns were included by default without explicit selection, different architecture information would mix into the AI context, causing:
- Reduced AI precision - Conflicting architectural guidance
- Inconsistent code generation - Multiple patterns applied simultaneously
- Context pollution - Unnecessary information consuming token budget
By removing these patterns, the boilerplate now focuses on a single, clear architectural approach, ensuring consistent and accurate AI-assisted development.
📦 What's Changed
Removed Files
docs/rules/architecture/vertical-slice/rules.mddocs/rules/architecture/hybrid-progressive/rules.mddocs/rules-en/architecture/vertical-slice/rules.mddocs/rules-en/architecture/hybrid-progressive/rules.mddocs/rules-ja/architecture/vertical-slice/rules.mddocs/rules-ja/architecture/hybrid-progressive/rules.md.dockerignore(unused)
Updated Files
docs/rules/rules-index.yaml- Removed architecture pattern entriesdocs/rules-en/rules-index.yaml- Removed architecture pattern entriesdocs/rules-ja/rules-index.yaml- Removed architecture pattern entriesREADME.md- Removed Architecture sectionREADME.ja.md- Removed Architecture sectionpackage.json- Version bump to 1.7.13package-lock.json- Version bump to 1.7.13
🔄 Migration Guide
No action required for existing users. This is a cleanup release that removes unused patterns.
If you were explicitly using Vertical Slice or Hybrid Progressive architecture rules:
- You can retrieve them from previous versions (v1.7.12 and earlier)
- Copy the specific rule files to your project's
docs/rules/architecture/directory - Update your
docs/rules/rules-index.yamlto reference them
📊 Impact
- -1,306 lines of code removed
- -7 architecture rule files removed
- +1 clearer, more focused development experience
Full Diff: v1.7.12...v1.7.13