vouchington-tooling 0.4.2 → 0.5.1

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.
@@ -86,7 +86,7 @@ function scanScopedRule(loaded, root, languageGlobs, execute) {
86
86
  }
87
87
  fs.copyFileSync(loaded.ruleFile, join(root, 'rule.yml'));
88
88
  fs.writeFileSync(join(root, 'sgconfig.yml'), yamlDump({ languageGlobs }));
89
- const result = execute(['scan', '--rule', 'rule.yml', '--config', 'sgconfig.yml', '--json', '--no-ignore', '--hidden'], root);
89
+ const result = execute(['scan', '--rule', 'rule.yml', '--config', 'sgconfig.yml', '--json', '--no-ignore', 'hidden'], root);
90
90
  if (result.status === null || result.status > 1)
91
91
  throw new Error(`ast-grep scan failed (exit ${result.status ?? 'signal'}): ${result.stderr ?? ''}`);
92
92
  const found = new Set(result.stdout?.trim()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vouchington-tooling",
3
- "version": "0.4.2",
3
+ "version": "0.5.1",
4
4
  "description": "Vouchington CLI and extractable tooling libraries.",
5
5
  "homepage": "https://github.com/vouchington/vouchington-tooling/tree/main/packages/vouchington-tooling#readme",
6
6
  "bugs": {
@@ -14,11 +14,17 @@ Use when completed retrospectives or journals should become durable follow-up wo
14
14
  3. Verify each candidate against the current base and search existing issues and open changes before
15
15
  drafting. Skip work that is complete, explicitly rejected, or already covered.
16
16
  4. Draft self-contained issues with the problem, concrete proposed work, relevant areas, and
17
- evidence embedded in the body. Route every authorized creation through
17
+ validation. Route every authorized creation through
18
18
  [github-issue](../github-issue/SKILL.md), including its repository gate, label approval, and
19
19
  denied-external tracking behavior.
20
20
  5. Archive only records that were fully processed under the repository's retention rules; report
21
21
  created, updated, skipped, and deferred themes with reasons.
22
22
 
23
+ Use source records only for local verification and leave them in the repository's approved journal
24
+ or retention system. Public issue bodies contain only the minimum bounded facts or redacted summaries
25
+ needed to establish the problem, proposed work, relevant areas, and validation. Never embed
26
+ unredacted logs, command output, environment details, provider payloads, or transcript content.
27
+
23
28
  This skill supplies no journal API, issue repository, labels, milestones, archival command, or
24
- approval model. A consumer wrapper provides those details.
29
+ approval model. Consumer wrappers cannot weaken this export boundary; they provide only those local
30
+ details.