@vfarcic/dot-ai 0.38.0 → 0.40.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vfarcic/dot-ai",
3
- "version": "0.38.0",
3
+ "version": "0.40.0",
4
4
  "description": "Universal Kubernetes application deployment agent with CLI and MCP interfaces",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,6 +15,7 @@ Complete the PRD implementation workflow including branch management, pull reque
15
15
  - [ ] **All tests passing**: Run `npm test` to ensure quality standards
16
16
  - [ ] **Documentation updated**: All user-facing docs reflect implemented functionality
17
17
  - [ ] **No outstanding blockers**: All dependencies resolved and technical debt addressed
18
+ - [ ] **Update PRD status**: Mark PRD as "Complete" with completion date (must be done before commit)
18
19
 
19
20
  ### 2. Branch and Commit Management
20
21
  - [ ] **Create feature branch**: `git checkout -b feature/prd-[issue-id]-[feature-name]`
@@ -38,11 +39,16 @@ Complete the PRD implementation workflow including branch management, pull reque
38
39
  - [ ] **Monitor for issues**: Watch for any post-deployment problems
39
40
 
40
41
  ### 5. Issue Closure
41
- - [ ] **Update PRD status**: Mark PRD as "Complete" with completion date
42
42
  - [ ] **Close GitHub issue**: Add final completion comment and close
43
43
  - [ ] **Archive artifacts**: Save any temporary files or testing data if needed
44
44
  - [ ] **Team notification**: Announce feature completion to relevant stakeholders
45
45
 
46
+ ### 6. Branch Cleanup
47
+ - [ ] **Switch to main branch**: `git checkout main`
48
+ - [ ] **Pull latest changes**: `git pull origin main` to ensure local main is up to date
49
+ - [ ] **Delete local feature branch**: `git branch -d feature/prd-[issue-id]-[feature-name]`
50
+ - [ ] **Delete remote feature branch**: `git push origin --delete feature/prd-[issue-id]-[feature-name]`
51
+
46
52
  ## Success Criteria
47
53
  ✅ **Feature is live and functional**
48
54
  ✅ **All tests passing in production**