@ngocsangairvds/vsaf 3.2.7 → 3.2.8

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": "@ngocsangairvds/vsaf",
3
- "version": "3.2.7",
3
+ "version": "3.2.8",
4
4
  "description": "improve confluence format",
5
5
  "keywords": ["claude", "claude-code", "ai", "sdlc", "framework", "bmad", "gitnexus", "superpowers"],
6
6
  "bin": {
@@ -18,9 +18,7 @@ metadata:
18
18
 
19
19
  Use this skill as the **platform-routing entrypoint** for the WHO scripts ecosystem.
20
20
 
21
- `WHO-project` is the canonical VDS ecosystem for both reusable skills and routed scripts:
22
- - skills live under `WHO-project/vds-skills/skills/`
23
- - scripts and orchestrators live under `WHO-project/vds-scripts/`
21
+ The VDS scripts ecosystem lives at `~/.claude/vds-scripts/` (installed via `vsaf global`).
24
22
 
25
23
  This skill helps you:
26
24
  - find the right `vds-cli` command family
@@ -46,27 +44,22 @@ Do **not** use this skill as the authoritative deep runbook for:
46
44
 
47
45
  ## Canonical Sources
48
46
 
49
- - Scripts workspace: `WHO-project/vds-scripts/`
50
- - Skills catalog: `WHO-project/vds-skills/skills/`
51
- - Skill registry: `WHO-project/vds-skills/registry.yaml`
52
- - Alignment workflow: `WHO-project/vds-skills/ALIGNMENT.md`
47
+ - Scripts workspace: `~/.claude/vds-scripts/`
53
48
 
54
49
  ## Primary Command Entry Points
55
50
 
56
- ```/dev/null/vds-scripts-skill-entrypoints.sh#L1-12
57
- # Interactive monorepo-root usage
58
- ./WHO-project/vds-scripts/scripts/worktree_uv.sh run --directory WHO-project/vds-scripts --package vds-cli vds-cli --help
59
- ./WHO-project/vds-scripts/scripts/worktree_uv.sh run --directory WHO-project/vds-scripts --package audit_orchestrator vds-audit --help
60
- ./WHO-project/vds-scripts/scripts/worktree_uv.sh run --directory WHO-project/vds-scripts --package spec_orchestrator vds-spec --help
61
-
62
- # Dedicated vds-scripts worktree usage
63
- ./scripts/worktree_uv.sh run --package vds_cli vds-cli --help
64
- ./scripts/worktree_uv.sh run --package audit_orchestrator vds-audit --help
65
- ./scripts/worktree_uv.sh run --package spec_orchestrator vds-spec --help
66
-
67
- # Maintained shell scripts must not copy the plain patterns above.
68
- # They should source scripts/vds_sh_helpers.sh and use vds_uv_run_package
69
- # / vds_uv_sync_package / vds_uv_sync_all instead.
51
+ ```bash
52
+ # Via vds-cli (recommended — MCP-registered)
53
+ vds-cli --help
54
+ vds-cli confluence --help
55
+ vds-cli jira --help
56
+ vds-cli bitbucket --help
57
+ vds-cli git --help
58
+
59
+ # Direct uv invocation from vds-scripts root
60
+ ~/.claude/vds-scripts/scripts/worktree_uv.sh run --directory ~/.claude/vds-scripts --package vds-cli vds-cli --help
61
+ ~/.claude/vds-scripts/scripts/worktree_uv.sh run --directory ~/.claude/vds-scripts --package audit_orchestrator vds-audit --help
62
+ ~/.claude/vds-scripts/scripts/worktree_uv.sh run --directory ~/.claude/vds-scripts --package spec_orchestrator vds-spec --help
70
63
  ```
71
64
 
72
65
  ## Platform Command Families
@@ -128,8 +121,6 @@ Use these bundled references for depth:
128
121
 
129
122
  ## Notes
130
123
 
131
- - Edit this skill only under `WHO-project/vds-skills/skills/vds-scripts-skill/`.
132
- - Do not edit `.agent/skills/` directly.
133
124
  - Keep this file concise and routing-oriented; push deeper command catalogs into `references/`.
134
- - For integrated `WHO-project/vds-scripts` workspace usage, Python 3.14+ is the preferred baseline for humans and AI agents.
135
- - After updates, sync generated agent surfaces from the monorepo root.
125
+ - For integrated `~/.claude/vds-scripts` workspace usage, Python 3.10+ is the preferred baseline.
126
+ - After updates, re-run `vsaf global` to sync skills to all agent surfaces.
@@ -64,10 +64,8 @@ vds-cli google-sheets -- --json-only read \
64
64
 
65
65
  Interactive monorepo-root usage commonly uses:
66
66
 
67
- ```/dev/null/google-sheets-prefix.sh#L1-1
68
- ./WHO-project/vds-scripts/scripts/worktree_uv.sh run --directory WHO-project/vds-scripts --package vds-cli vds-cli google-sheets <command>
67
+ ```bash
68
+ vds-cli google-sheets <command>
69
+ # Or direct uv invocation:
70
+ ~/.claude/vds-scripts/scripts/worktree_uv.sh run --directory ~/.claude/vds-scripts --package vds-cli vds-cli google-sheets <command>
69
71
  ```
70
-
71
- Inside a dedicated `vds-scripts` worktree, the equivalent form is `./scripts/worktree_uv.sh run --package vds_cli vds-cli google-sheets <command>`.
72
-
73
- For maintained shell scripts inside `WHO-project/vds-scripts`, do not copy raw operator forms. Source `scripts/vds_sh_helpers.sh` and use the helper contract instead.
@@ -2,10 +2,10 @@
2
2
 
3
3
  vds Representative WHO integration command families.
4
4
 
5
- These examples are interactive operator examples. From the umbrella monorepo root, prefer `./WHO-project/vds-scripts/scripts/worktree_uv.sh run --directory WHO-project/vds-scripts --package <uv-package-name> ...`. Inside a dedicated `vds-scripts` worktree, prefer `./scripts/worktree_uv.sh run --package <member-dir> ...`. Maintained shell scripts inside `WHO-project/vds-scripts` should source `scripts/vds_sh_helpers.sh` instead of copying raw operator forms.
5
+ These examples use `vds-cli` (MCP-registered entrypoint). For direct uv invocation, prefer `~/.claude/vds-scripts/scripts/worktree_uv.sh run --directory ~/.claude/vds-scripts --package <uv-package-name> ...`.
6
6
 
7
7
  - `vds-cli jira ...`
8
- - JQL search example: `./WHO-project/vds-scripts/scripts/worktree_uv.sh run --directory WHO-project/vds-scripts --package jira_orchestrator vds-jira-cli search "project = CBDC ORDER BY updated DESC" --limit 5 --json-only`
8
+ - JQL search example: `vds-cli jira search "project = CBDC ORDER BY updated DESC" --limit 5 --json-only`
9
9
  - Note: `vds-jira-cli search` now accepts `--json-only` as a command-local flag after `search`, in addition to the global pre-subcommand form.
10
10
  - `vds-cli confluence ...`
11
11
  - `vds-cli bitbucket ...`