@relipa/ai-flow-kit 0.0.7-beta.1 → 0.0.7-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -41,6 +41,7 @@ Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
41
41
 
42
42
  ### Fixed
43
43
 
44
+ - **Automatic Git Commits Removed** — Removed all `git add` and `git commit` instructions from the `generate-spec` and `writing-plans` skills to prevent unwanted automatic commits during Gate 3/4. Developers now have full manual control over commits.
44
45
  - **NestJS auto-detection** — `@nestjs/core` in `package.json` was incorrectly detected as `nodejs-express`; now correctly resolves to `nestjs`.
45
46
  - **PHP project auto-detection** — Projects with `composer.json` but no Laravel dependency now correctly auto-detect as `php-plain` instead of being skipped.
46
47
  - Fixed `.github/copilot-instructions.md` not being included in automated `.gitignore` rules.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@relipa/ai-flow-kit",
3
- "version": "0.0.7-beta.1",
3
+ "version": "0.0.7-beta.2",
4
4
  "description": "All-in-one AI Flow Kit for team development with Claude AI - skills, templates, and MCP adapters",
5
5
  "author": "Example Team",
6
6
  "publishConfig": {
@@ -112,6 +112,7 @@ Every step must contain the actual content an engineer needs. These are **plan f
112
112
  - Complete code in every step — if a step changes code, show the code
113
113
  - Exact commands with expected output
114
114
  - DRY, YAGNI, TDD
115
+ - ❌ **DO NOT** include `git commit`, `git add`, or any git-related commands in the plan steps.
115
116
 
116
117
  ## Self-Review
117
118