@davidbalzan/groundwork 0.4.0 → 0.4.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.
- package/LICENSE +8 -10
- package/package.json +5 -4
- package/payload/doc-templates/FACTS.md +2 -2
- package/src/lib/adr-tripwire.mjs +2 -2
package/LICENSE
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
1
|
Copyright (c) 2026 David Balzan
|
|
4
2
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense,
|
|
9
|
-
copies of
|
|
10
|
-
|
|
3
|
+
All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and its accompanying files are proprietary. No licence is
|
|
6
|
+
granted to use, copy, modify, merge, publish, distribute, sublicense, or sell
|
|
7
|
+
copies of this software, in whole or in part, except by a separate written
|
|
8
|
+
agreement signed by the copyright holder.
|
|
11
9
|
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
Possession of these files — including by download from a public package
|
|
11
|
+
registry — does not constitute such an agreement and grants no rights.
|
|
14
12
|
|
|
15
13
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
14
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davidbalzan/groundwork",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Groundwork — an installable AI development workflow (skills + doc methodology) you bolt onto any repo.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
"src",
|
|
14
14
|
"payload",
|
|
15
15
|
"docs",
|
|
16
|
-
"README.md"
|
|
16
|
+
"README.md",
|
|
17
|
+
"LICENSE"
|
|
17
18
|
],
|
|
18
19
|
"keywords": [
|
|
19
20
|
"ai",
|
|
@@ -26,9 +27,9 @@
|
|
|
26
27
|
"methodology"
|
|
27
28
|
],
|
|
28
29
|
"author": "David Balzan",
|
|
29
|
-
"license": "
|
|
30
|
+
"license": "UNLICENSED",
|
|
30
31
|
"dependencies": {
|
|
31
|
-
"@davidbalzan/groundwork-seam": "0.1.
|
|
32
|
+
"@davidbalzan/groundwork-seam": "0.1.5"
|
|
32
33
|
},
|
|
33
34
|
"scripts": {
|
|
34
35
|
"groundwork": "node src/cli.mjs",
|
|
@@ -38,6 +38,6 @@ glyphs, not ASCII. Parsers (doctor, `set-fact.mjs`, UIs) split on those glyphs.
|
|
|
38
38
|
## Facts
|
|
39
39
|
|
|
40
40
|
<!-- add entries in the pinned format above, e.g.:
|
|
41
|
-
- `
|
|
42
|
-
verified: 2026-07-02T14:30Z · by:
|
|
41
|
+
- `nightly-export-job` — does NOT exist anywhere in the codebase
|
|
42
|
+
verified: 2026-07-02T14:30Z · by: <project>-worker-1 · method: git grep + gh api origin/main
|
|
43
43
|
-->
|
package/src/lib/adr-tripwire.mjs
CHANGED
|
@@ -15,7 +15,7 @@ import path from "node:path";
|
|
|
15
15
|
*
|
|
16
16
|
* Shared-token suppression: tokens that also appear in the ADR title / Decision / Context
|
|
17
17
|
* (alias-expanded) are the accepted path, not evidence of the reject. Generic project-wide
|
|
18
|
-
* paths (`docs`, `templates`, `readme`, `wiki`) are not hits.
|
|
18
|
+
* paths (`docs`, `templates`, `readme`, `wiki`) are not hits. A consumer fleet burned an audit cycle on
|
|
19
19
|
* `next` (accepted Next.js), top-level `docs/`, and `docs/templates`.
|
|
20
20
|
*/
|
|
21
21
|
|
|
@@ -85,7 +85,7 @@ const STOP = new Set(["the", "and", "with", "only", "over", "for", "app", "api",
|
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
87
|
* Top-level / workspace path tokens that every repo tends to have. A hit on these is
|
|
88
|
-
* project-wide, not evidence of a rejected alternative (
|
|
88
|
+
* project-wide, not evidence of a rejected alternative (field report: `docs/`, `docs/templates`).
|
|
89
89
|
* Dependency names are not filtered here — `next` still fires unless it is in `own`.
|
|
90
90
|
*/
|
|
91
91
|
export const GENERIC_PATHS = new Set(["docs", "templates", "readme", "wiki"]);
|