@ngocsangairvds/vsaf 3.1.22 → 3.1.24

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.
@@ -2,19 +2,19 @@
2
2
 
3
3
  This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
4
4
 
5
- > VSAF v3 — Agentic AI SDLC Framework. 4 integrated tools. 2-layer review.
5
+ > VSAF v3 — Agentic AI SDLC Framework. 3 integrated tools. 2-layer review.
6
6
 
7
7
  ---
8
8
 
9
9
  ## Prerequisites
10
10
 
11
- Node.js ≥18, Python ≥3.10, Git, Claude Code subscription. Run `npx vsaf init` (idempotent) to install all tools.
11
+ Node.js ≥18, Git, Claude Code subscription. Run `npx vsaf init` (idempotent) to install all tools.
12
12
 
13
13
  ---
14
14
 
15
15
  ## Architecture
16
16
 
17
- VSAF is a meta-framework for AI-driven SDLC — not an application. It has no source code to compile. The 4-layer stack:
17
+ VSAF is a meta-framework for AI-driven SDLC — not an application. It has no source code to compile. The 3-tool stack:
18
18
 
19
19
  | Layer | Tools | Purpose |
20
20
  |-------|-------|---------|
package/bin/vsaf.js CHANGED
@@ -24,7 +24,7 @@ GLOBAL (once per machine → ~/.claude/)
24
24
  PER PROJECT (per repo, run inside the repo root)
25
25
  .claude/settings.json Local AI settings
26
26
  .claude/skills + .codex/skills BMAD skills synced for local clients
27
- _bmad + _bmad-output BMAD workspace + generated artifacts folders
27
+ .vsaf/_bmad BMAD workspace (planning configs + templates)
28
28
  CLAUDE.md 8-step workflow rules
29
29
 
30
30
  EXAMPLES
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ngocsangairvds/vsaf",
3
- "version": "3.1.22",
4
- "description": "fix gitnexus with windows",
3
+ "version": "3.1.24",
4
+ "description": "fix gitnexus skip git",
5
5
  "keywords": ["claude", "claude-code", "ai", "sdlc", "framework", "bmad", "gitnexus", "superpowers"],
6
6
  "bin": {
7
7
  "vsaf": "./bin/vsaf.js"
package/src/global.js CHANGED
@@ -14,7 +14,7 @@ async function installGlobal() {
14
14
  console.log( '\x1b[1m╚══════════════════════════════════════════╝\x1b[0m');
15
15
 
16
16
  installSkills();
17
- installBinary('gitnexus', () => exec('npm install -g gitnexus'));
17
+ installBinary('gitnexus', () => exec('npm install -g gitnexus@1.6.4-rc.79'));
18
18
  setupGitnexusMcp();
19
19
 
20
20
  console.log('\n\x1b[32m\x1b[1m✓ Global infra ready.\x1b[0m\n');
@@ -64,9 +64,9 @@ function setupGitnexusMcp() {
64
64
  }
65
65
 
66
66
  info('Configuring GitNexus MCP...');
67
- exec('claude mcp add gitnexus -- npx -y gitnexus@1.6.4-rc.64 mcp')
67
+ exec('claude mcp add gitnexus -- npx -y gitnexus@1.6.4-rc.79 mcp')
68
68
  ? ok('GitNexus MCP configured')
69
- : warn('MCP setup failed — run manually: claude mcp add gitnexus -- npx -y gitnexus@1.6.4-rc.64 mcp');
69
+ : warn('MCP setup failed — run manually: claude mcp add gitnexus -- npx -y gitnexus@1.6.4-rc.79 mcp');
70
70
  }
71
71
 
72
72
  module.exports = { installGlobal };
package/src/workflow.js CHANGED
@@ -33,7 +33,7 @@ function runIndex({ skipGit = false } = {}) {
33
33
  return false;
34
34
  }
35
35
 
36
- if (!preflightCheck()) {
36
+ if (!skipGit && !preflightCheck()) {
37
37
  return false;
38
38
  }
39
39
 
@@ -1,29 +0,0 @@
1
- # Optional compatibility wrapper for teams that still type `make`.
2
- # Preferred usage: run `vsaf <command>` directly.
3
-
4
- .PHONY: help index verify review archive status mine clean
5
-
6
- help: ## Show this help
7
- @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
8
- awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-14s\033[0m %s\n", $$1, $$2}'
9
-
10
- index: ## Run `vsaf index`
11
- @vsaf index
12
-
13
- verify: ## Run `vsaf verify`
14
- @vsaf verify
15
-
16
- review: ## Run `vsaf review`
17
- @vsaf review
18
-
19
- archive: ## Run `vsaf archive`
20
- @vsaf archive
21
-
22
- mine: ## Run `vsaf mine`
23
- @vsaf mine
24
-
25
- status: ## Run `vsaf status`
26
- @vsaf status
27
-
28
- clean: ## Run `vsaf clean`
29
- @vsaf clean