@lsctech/polaris 0.5.12 → 0.5.14
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/cli/adopt-canon.js +22 -8
- package/dist/finalize/artifact-policy.js +1 -24
- package/dist/finalize/index.js +13 -17
- package/dist/finalize/run-report.js +3 -3
- package/dist/finalize/steps/06-commit.js +1 -2
- package/dist/finalize/steps/12-archive.js +1 -1
- package/dist/loop/adapters/cli-subtask-bridge.js +2 -0
- package/dist/loop/adapters/terminal-cli.js +31 -3
- package/dist/loop/body-parser.js +4 -0
- package/dist/loop/continue.js +3 -3
- package/dist/loop/dispatch.js +1 -1
- package/dist/loop/orphan-recovery.js +2 -1
- package/dist/loop/parent.js +28 -12
- package/dist/loop/run-bootstrap.js +3 -1
- package/dist/map/inference.js +4 -1
- package/dist/medic/run-health-consult.js +5 -4
- package/dist/medic/treatment-packets.js +5 -1
- package/dist/qc/providers/coderabbit.js +2 -0
- package/dist/run-health/index.js +12 -0
- package/dist/skill-packet/generator.js +234 -3
- package/dist/smartdocs-engine/canon-check.js +5 -5
- package/dist/smartdocs-engine/index.js +54 -0
- package/dist/smartdocs-engine/seed-instructions.js +159 -4
- package/dist/smartdocs-engine/validate-instructions.js +46 -4
- package/dist/workspace/POLARIS.md +4 -0
- package/dist/workspace/SUMMARY.md +56 -0
- package/package.json +1 -1
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
<!-- polaris:draft -->
|
|
2
|
+
<!-- BEGIN POLARIS GENERATED -->
|
|
3
|
+
<!-- polaris:template-version: 1 -->
|
|
2
4
|
# workspace
|
|
3
5
|
|
|
4
6
|
> Polaris draft — review and remove the `<!-- polaris:draft -->` marker to promote.
|
|
@@ -38,3 +40,5 @@
|
|
|
38
40
|
## Related routes
|
|
39
41
|
|
|
40
42
|
<!-- Atlas route pointer to sibling or parent folders. -->
|
|
43
|
+
|
|
44
|
+
<!-- END POLARIS GENERATED -->
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<!-- polaris:draft -->
|
|
2
|
+
<!-- BEGIN POLARIS GENERATED -->
|
|
3
|
+
<!-- polaris:template-version: 1 -->
|
|
4
|
+
# Summary: workspace
|
|
5
|
+
|
|
6
|
+
> Polaris draft — review and remove the `<!-- polaris:draft -->` marker to promote.
|
|
7
|
+
|
|
8
|
+
## Purpose
|
|
9
|
+
<!-- One-line statement of what this folder does. -->
|
|
10
|
+
|
|
11
|
+
## Core Concepts
|
|
12
|
+
<!-- 3–7 key concepts a reader needs before diving into source. -->
|
|
13
|
+
|
|
14
|
+
## Architectural Role
|
|
15
|
+
<!-- How this folder fits into the larger system. -->
|
|
16
|
+
|
|
17
|
+
## Key Constraints
|
|
18
|
+
<!-- The most important non-obvious behavioral limits. -->
|
|
19
|
+
|
|
20
|
+
## Important Relationships
|
|
21
|
+
<!-- Upstream/downstream dependencies on other folders. -->
|
|
22
|
+
|
|
23
|
+
## Current State
|
|
24
|
+
<!-- What is implemented, what is not yet, known gaps. -->
|
|
25
|
+
|
|
26
|
+
## Route Health
|
|
27
|
+
<!-- Current operational condition. Workers should understand route health in under 10 seconds. -->
|
|
28
|
+
|
|
29
|
+
### Healthy
|
|
30
|
+
<!-- If the route is healthy, state why. Otherwise omit this subsection. -->
|
|
31
|
+
|
|
32
|
+
### Monitoring
|
|
33
|
+
<!-- Any ongoing monitoring or observations. Omit if none. -->
|
|
34
|
+
|
|
35
|
+
### Known Issues
|
|
36
|
+
<!-- Any known problems or risks. Omit if none. -->
|
|
37
|
+
|
|
38
|
+
### Recent Treatments
|
|
39
|
+
<!-- Recent fixes or improvements, with chart references if applicable. Omit if none. -->
|
|
40
|
+
|
|
41
|
+
### Improvement Opportunities
|
|
42
|
+
<!-- Potential future improvements. Omit if none. -->
|
|
43
|
+
|
|
44
|
+
## Canonical References
|
|
45
|
+
|
|
46
|
+
```yaml
|
|
47
|
+
canonical_docs:
|
|
48
|
+
- POLARIS.md
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
<!-- Add navigation paths to canonical docs, specs, or doctrine. These are retrieval paths, not reading assignments. -->
|
|
52
|
+
|
|
53
|
+
## Known Drift
|
|
54
|
+
<!-- Places where the summary may be stale (honesty field). -->
|
|
55
|
+
|
|
56
|
+
<!-- END POLARIS GENERATED -->
|