@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 CHANGED
@@ -1,16 +1,14 @@
1
- MIT License
2
-
3
1
  Copyright (c) 2026 David Balzan
4
2
 
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
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
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
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.0",
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": "MIT",
30
+ "license": "UNLICENSED",
30
31
  "dependencies": {
31
- "@davidbalzan/groundwork-seam": "0.1.3"
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
- - `auto-disavow-flag` — does NOT exist anywhere in the codebase
42
- verified: 2026-07-02T14:30Z · by: disavow-worker-1 · method: git grep + gh api origin/main
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
  -->
@@ -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. Cass burned an audit cycle on
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 (cass: `docs/`, `docs/templates`).
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"]);