akm-cli 0.9.0-beta.5 → 0.9.0-beta.9
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/CHANGELOG.md +119 -0
- package/dist/cli.js +7 -0
- package/dist/commands/feedback-cli.js +42 -37
- package/dist/commands/graph/graph.js +75 -71
- package/dist/commands/health.js +10 -2
- package/dist/commands/improve/consolidate.js +24 -4
- package/dist/commands/improve/distill.js +26 -5
- package/dist/commands/improve/extract-prompt.js +1 -1
- package/dist/commands/improve/improve-auto-accept.js +6 -0
- package/dist/commands/improve/improve-profiles.js +4 -0
- package/dist/commands/improve/improve.js +753 -465
- package/dist/commands/improve/proactive-maintenance.js +113 -0
- package/dist/commands/improve/reflect.js +6 -0
- package/dist/commands/proposal/proposal.js +5 -0
- package/dist/commands/proposal/validators/proposals.js +67 -54
- package/dist/commands/read/curate.js +17 -0
- package/dist/commands/sources/stash-cli.js +10 -2
- package/dist/core/config/config-schema.js +25 -0
- package/dist/core/paths.js +3 -0
- package/dist/core/state-db.js +46 -1
- package/dist/indexer/db/db.js +97 -11
- package/dist/indexer/ensure-index.js +152 -17
- package/dist/indexer/index-writer-lock.js +99 -0
- package/dist/indexer/indexer.js +114 -111
- package/dist/integrations/harnesses/claude/session-log.js +1 -1
- package/dist/llm/client.js +23 -4
- package/dist/scripts/migrate-storage.js +90 -13
- package/dist/scripts/migrations/import-fs-improve-runs-to-db.js +8 -1
- package/dist/sources/providers/tar-utils.js +16 -8
- package/package.json +2 -2
|
@@ -54,6 +54,10 @@ const IMPROVE_PROCESS_DEFAULTS = {
|
|
|
54
54
|
// proposal-queue triage drains the standing backlog. Opt-in (default off),
|
|
55
55
|
// like `validation` — needs an explicit `enabled: true`.
|
|
56
56
|
triage: false,
|
|
57
|
+
// Layer 2 proactive-maintenance selector. Opt-in (default off) — surfaces
|
|
58
|
+
// stale high-value assets on a schedule. Enable per-profile with an explicit
|
|
59
|
+
// `processes.proactiveMaintenance.enabled: true`.
|
|
60
|
+
proactiveMaintenance: false,
|
|
57
61
|
};
|
|
58
62
|
/**
|
|
59
63
|
* Compute the effective enabled-state for a named improve process.
|