Skip to content

Release v1.7.13

Choose a tag to compare

@shinpr shinpr released this 07 Oct 04:36
· 73 commits to main since this release
f585bf3

🎯 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.md
  • docs/rules/architecture/hybrid-progressive/rules.md
  • docs/rules-en/architecture/vertical-slice/rules.md
  • docs/rules-en/architecture/hybrid-progressive/rules.md
  • docs/rules-ja/architecture/vertical-slice/rules.md
  • docs/rules-ja/architecture/hybrid-progressive/rules.md
  • .dockerignore (unused)

Updated Files

  • docs/rules/rules-index.yaml - Removed architecture pattern entries
  • docs/rules-en/rules-index.yaml - Removed architecture pattern entries
  • docs/rules-ja/rules-index.yaml - Removed architecture pattern entries
  • README.md - Removed Architecture section
  • README.ja.md - Removed Architecture section
  • package.json - Version bump to 1.7.13
  • package-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:

  1. You can retrieve them from previous versions (v1.7.12 and earlier)
  2. Copy the specific rule files to your project's docs/rules/architecture/ directory
  3. Update your docs/rules/rules-index.yaml to 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