Releases: ProjAnvil/MindForge
Releases · ProjAnvil/MindForge
v0.3.1
[0.3.1] - 2026-03-12
Changed
- Setup Script Naming: Renamed all internal variables and user-facing text from
AITKtoMindForgeinsetup-claude.shfor brand consistency:AITK_DIR→MINDFORGE_DIRAITK_AGENTS_DIR→MINDFORGE_AGENTS_DIRAITK_SKILLS_DIR→MINDFORGE_SKILLS_DIRAITK_DOCS_SRC_DIR→MINDFORGE_DOCS_SRC_DIRAITK_USER_CLAUDE_MD_SRC→MINDFORGE_USER_CLAUDE_MD_SRC- Banner text updated from "AITK Claude Code Setup" to "MindForge Claude Code Setup"
v0.3.0
[0.3.0] - 2026-03-05
Changed
- Progressive Disclosure Architecture: Restructured all skill files to follow a three-level loading system for improved token efficiency:
- Level 1 (Metadata): Skill name and description always loaded (~100 words)
- Level 2 (SKILL.md body): Core concepts and quick reference loaded when skill triggers (<500 lines)
- Level 3 (References): Detailed patterns, templates, and examples loaded only when needed
Added
- References Subdirectories: Created
references/folders for 12 skills in both English and Chinese (24 total):api-design: OpenAPI templates, GraphQL patterns, pagination & rate limiting, common patternsdatabase-design: Sharding strategies, query optimization, migration & backupdesign-pattern: Pattern implementations with code examplesenterprise-java: Class templates, response patternsfrontend-svelte: API patterns, forms & styling, testing & performance & a11y, deployment patternsgit-guru: Advanced features, workflows & scenariosgo-development: File templates for clean architecturejavascript-typescript: Express API patterns, React patterns, testing patternspython-development: FastAPI patterns, Django patterns, testing patternssystem-architecture: Architecture templatestech-documentation: API docs, architecture docs, deployment docs templatestesting: Language-specific test patterns (JUnit, pytest, Jest, testify)
Technical Details
- All SKILL.md files now stay under 500 lines for optimal context loading
- 56 new reference files created (28 English + 28 Chinese)
- Total reduction of ~12,500 lines moved from main skill files to references
- Maintains consistent structure across English (
en) and Chinese (zh-cn) versions
v0.2.0
Added
-
Modern Go Guidelines: Added modern-go.md supporting file to go-development skill with comprehensive version-specific syntax guidelines from Go 1.0 to Go 1.26+, including:
- Dynamic Go version detection via shell command
- Modern alternatives for legacy patterns (slices, maps, cmp packages)
- Version-specific best practices (omitzero, b.Loop(), t.Context(), wg.Go(), etc.)
- Before/after code examples for each feature
Changed
- Simplified Skill Frontmatter: Removed allowed-tools field from all 38 skill files. Claude Code's permission system handles tool access control appropriately without requiring explicit allowlists in skill definitions.