logicstamp-context 0.2.2 → 0.2.4
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/LLM_CONTEXT.md +2 -2
- package/README.md +116 -923
- package/dist/cli/commands/context/statsCalculator.d.ts.map +1 -1
- package/dist/cli/commands/context/statsCalculator.js +29 -10
- package/dist/cli/commands/context/statsCalculator.js.map +1 -1
- package/dist/cli/commands/context/tokenEstimator.d.ts +1 -1
- package/dist/cli/commands/context/tokenEstimator.d.ts.map +1 -1
- package/dist/cli/commands/context/tokenEstimator.js +38 -5
- package/dist/cli/commands/context/tokenEstimator.js.map +1 -1
- package/dist/cli/commands/context.js +1 -1
- package/dist/cli/commands/context.js.map +1 -1
- package/dist/cli/parser/helpText.js +348 -348
- package/dist/core/styleExtractor/index.d.ts +1 -0
- package/dist/core/styleExtractor/index.d.ts.map +1 -1
- package/dist/core/styleExtractor/index.js +1 -0
- package/dist/core/styleExtractor/index.js.map +1 -1
- package/dist/core/styleExtractor/material.d.ts +19 -0
- package/dist/core/styleExtractor/material.d.ts.map +1 -0
- package/dist/core/styleExtractor/material.js +103 -0
- package/dist/core/styleExtractor/material.js.map +1 -0
- package/dist/core/styleExtractor/styleExtractor.d.ts.map +1 -1
- package/dist/core/styleExtractor/styleExtractor.js +14 -0
- package/dist/core/styleExtractor/styleExtractor.js.map +1 -1
- package/dist/types/UIFContract.d.ts +11 -0
- package/dist/types/UIFContract.d.ts.map +1 -1
- package/dist/types/UIFContract.js.map +1 -1
- package/package.json +1 -1
- package/schema/logicstamp.context.schema.json +48 -1
package/LLM_CONTEXT.md
CHANGED
|
@@ -88,7 +88,7 @@ The `context_main.json` file serves as a directory index:
|
|
|
88
88
|
}
|
|
89
89
|
],
|
|
90
90
|
"meta": {
|
|
91
|
-
"source": "logicstamp-context@0.
|
|
91
|
+
"source": "logicstamp-context@0.2.4"
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
```
|
|
@@ -111,7 +111,7 @@ Each folder's `context.json` contains an array of LogicStamp bundles. Each bundl
|
|
|
111
111
|
- `graph.edges` lists dependency relationships between nodes (empty when analysis depth is 1).
|
|
112
112
|
- `meta` section contains two critical fields:
|
|
113
113
|
- `missing`: Array of unresolved dependencies. Each entry includes `name` (import path), `reason` (why it failed), and `referencedBy` (source component). Empty array indicates complete dependency resolution.
|
|
114
|
-
- `source`: Generator version string (e.g., `"logicstamp-context@0.
|
|
114
|
+
- `source`: Generator version string (e.g., `"logicstamp-context@0.2.4"`) for compatibility tracking.
|
|
115
115
|
- Example bundle skeleton:
|
|
116
116
|
|
|
117
117
|
```
|