@aihq/harness 0.2.0-rc.0 → 0.2.0
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/NOTICE +41 -0
- package/README.md +23 -2
- package/dist/{chunk-S7XFTZJW.js → chunk-2P5QRFQK.js} +8 -6
- package/dist/{chunk-S7XFTZJW.js.map → chunk-2P5QRFQK.js.map} +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -2
package/dist/cli.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -699,7 +699,7 @@ declare function parseCertLines(stdout: string): CertEntry[];
|
|
|
699
699
|
*/
|
|
700
700
|
declare function parsePemBlocks(stdout: string, subject?: string): CertEntry[];
|
|
701
701
|
|
|
702
|
-
declare const VERSION = "0.
|
|
702
|
+
declare const VERSION = "0.2.0";
|
|
703
703
|
/** Build the configured commander program. Imported by both the CLI entry and tests. */
|
|
704
704
|
declare function buildProgram(): Command;
|
|
705
705
|
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aihq/harness",
|
|
3
|
-
"version": "0.2.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Enterprise AI Bootstrapping Harness — bootstraps governed, proxy-safe AI coding into workstations and repos",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"dist",
|
|
19
|
-
"README.md"
|
|
19
|
+
"README.md",
|
|
20
|
+
"NOTICE"
|
|
20
21
|
],
|
|
21
22
|
"engines": {
|
|
22
23
|
"node": ">=20"
|