engineering-loop 1.0.0 → 1.0.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/dist/defaultConfig.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { AdapterId, EngineeringLoopConfig } from "./types.js";
|
|
2
|
+
export declare const SCHEMA_URL = "https://raw.githubusercontent.com/sergiorebolledo/engineering-loop-standard/v1.0.0/engineering-loop.schema.json";
|
|
2
3
|
export declare const DEFAULT_MEMORY_FILES: string[];
|
|
3
4
|
export declare const DEFAULT_ADAPTERS: AdapterId[];
|
|
4
5
|
export declare function buildDefaultConfig(projectName: string): EngineeringLoopConfig;
|
package/dist/defaultConfig.js
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
// A relative path here would break the moment `init` writes it into a
|
|
2
|
+
// project, since the schema file isn't copied alongside it. Point at the
|
|
3
|
+
// tagged spec release instead, which always resolves.
|
|
4
|
+
export const SCHEMA_URL = "https://raw.githubusercontent.com/sergiorebolledo/engineering-loop-standard/v1.0.0/engineering-loop.schema.json";
|
|
1
5
|
export const DEFAULT_MEMORY_FILES = [
|
|
2
6
|
"PROJECT.md",
|
|
3
7
|
"ARCHITECTURE.md",
|
|
@@ -9,7 +13,7 @@ export const DEFAULT_MEMORY_FILES = [
|
|
|
9
13
|
export const DEFAULT_ADAPTERS = ["claude", "cursor", "aider", "codex"];
|
|
10
14
|
export function buildDefaultConfig(projectName) {
|
|
11
15
|
return {
|
|
12
|
-
$schema:
|
|
16
|
+
$schema: SCHEMA_URL,
|
|
13
17
|
version: "1.0.0",
|
|
14
18
|
project: {
|
|
15
19
|
name: projectName,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"defaultConfig.js","sourceRoot":"","sources":["../src/defaultConfig.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,YAAY;IACZ,iBAAiB;IACjB,YAAY;IACZ,UAAU;IACV,cAAc;IACd,cAAc;CACf,CAAC;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAgB,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;AAEpF,MAAM,UAAU,kBAAkB,CAAC,WAAmB;IACpD,OAAO;QACL,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"defaultConfig.js","sourceRoot":"","sources":["../src/defaultConfig.ts"],"names":[],"mappings":"AAEA,sEAAsE;AACtE,yEAAyE;AACzE,sDAAsD;AACtD,MAAM,CAAC,MAAM,UAAU,GACrB,iHAAiH,CAAC;AAEpH,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,YAAY;IACZ,iBAAiB;IACjB,YAAY;IACZ,UAAU;IACV,cAAc;IACd,cAAc;CACf,CAAC;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAgB,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;AAEpF,MAAM,UAAU,kBAAkB,CAAC,WAAmB;IACpD,OAAO;QACL,OAAO,EAAE,UAAU;QACnB,OAAO,EAAE,OAAO;QAChB,OAAO,EAAE;YACP,IAAI,EAAE,WAAW;SAClB;QACD,MAAM,EAAE;YACN,SAAS,EAAE,aAAa;YACxB,cAAc,EAAE,CAAC,GAAG,oBAAoB,CAAC;SAC1C;QACD,QAAQ,EAAE;YACR,QAAQ,EAAE,CAAC,UAAU,EAAE,MAAM,CAAC;YAC9B,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,aAAa,CAAC;SACvD;QACD,QAAQ,EAAE;YACR,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,cAAc;YACpB,KAAK,EAAE,eAAe;SACvB;QACD,eAAe,EAAE;YACf,IAAI,EAAE,IAAI;YACV,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,IAAI;YACV,OAAO,EAAE,IAAI;SACd;QACD,MAAM,EAAE;YACN,cAAc,EAAE,IAAI;YACpB,qBAAqB,EAAE,CAAC;SACzB;QACD,QAAQ,EAAE,CAAC,GAAG,gBAAgB,CAAC;KAChC,CAAC;AACJ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "engineering-loop",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "CLI for the Engineering Loop Standard: scaffold engineering-loop.json, persistent project memory, and multi-tool AI agent adapters.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -44,5 +44,14 @@
|
|
|
44
44
|
"codex",
|
|
45
45
|
"specification",
|
|
46
46
|
"cli"
|
|
47
|
-
]
|
|
47
|
+
],
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "git+https://github.com/sergiorebolledo/engineering-loop-standard.git",
|
|
51
|
+
"directory": "packages/cli"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://github.com/sergiorebolledo/engineering-loop-standard#readme",
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/sergiorebolledo/engineering-loop-standard/issues"
|
|
56
|
+
}
|
|
48
57
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://engineering-loop.
|
|
3
|
+
"$id": "https://raw.githubusercontent.com/sergiorebolledo/engineering-loop-standard/v1.0.0/engineering-loop.schema.json",
|
|
4
4
|
"title": "Engineering Loop Standard Configuration",
|
|
5
5
|
"description": "Formal schema for engineering-loop.json, the single source of truth an Engineering Loop Standard adapter is generated from.",
|
|
6
6
|
"type": "object",
|