@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
|
@@ -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
|
-
|
|
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:
|
|
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
|
-
|
|
57
|
-
#
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
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
|
|
135
|
-
- After updates,
|
|
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
|
-
|
|
68
|
-
|
|
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
|
|
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:
|
|
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 ...`
|