akm-cli 0.6.1 → 0.7.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/CHANGELOG.md +66 -0
- package/dist/{cli.js → src/cli.js} +712 -34
- package/dist/{commands → src/commands}/config-cli.js +47 -4
- package/dist/src/commands/distill.js +283 -0
- package/dist/src/commands/events.js +108 -0
- package/dist/src/commands/history.js +191 -0
- package/dist/{commands → src/commands}/installed-stashes.js +1 -1
- package/dist/src/commands/proposal.js +119 -0
- package/dist/src/commands/propose.js +171 -0
- package/dist/src/commands/reflect.js +193 -0
- package/dist/{commands → src/commands}/registry-search.js +71 -7
- package/dist/{commands → src/commands}/remember.js +12 -0
- package/dist/{commands → src/commands}/search.js +104 -4
- package/dist/{commands → src/commands}/self-update.js +4 -3
- package/dist/{commands → src/commands}/show.js +73 -0
- package/dist/{commands → src/commands}/source-add.js +5 -1
- package/dist/{commands → src/commands}/source-manage.js +7 -1
- package/dist/{core → src/core}/asset-ref.js +5 -5
- package/dist/{core → src/core}/asset-spec.js +12 -0
- package/dist/{core → src/core}/common.js +1 -1
- package/dist/{core → src/core}/config.js +203 -121
- package/dist/{core → src/core}/errors.js +4 -0
- package/dist/src/core/events.js +239 -0
- package/dist/src/core/lesson-lint.js +86 -0
- package/dist/src/core/proposals.js +406 -0
- package/dist/src/core/warn.js +72 -0
- package/dist/{core → src/core}/write-source.js +80 -5
- package/dist/{indexer → src/indexer}/db-search.js +114 -24
- package/dist/{indexer → src/indexer}/db.js +76 -23
- package/dist/{indexer → src/indexer}/file-context.js +0 -3
- package/dist/src/indexer/graph-boost.js +179 -0
- package/dist/src/indexer/graph-extraction.js +212 -0
- package/dist/{indexer → src/indexer}/indexer.js +88 -7
- package/dist/{indexer → src/indexer}/matchers.js +1 -1
- package/dist/src/indexer/memory-inference.js +263 -0
- package/dist/{indexer → src/indexer}/metadata.js +111 -3
- package/dist/{indexer → src/indexer}/search-source.js +4 -2
- package/dist/src/integrations/agent/config.js +292 -0
- package/dist/src/integrations/agent/detect.js +94 -0
- package/dist/src/integrations/agent/index.js +17 -0
- package/dist/src/integrations/agent/profiles.js +65 -0
- package/dist/src/integrations/agent/prompts.js +167 -0
- package/dist/src/integrations/agent/spawn.js +272 -0
- package/dist/{integrations → src/integrations}/github.js +9 -3
- package/dist/{integrations → src/integrations}/lockfile.js +0 -26
- package/dist/{llm → src/llm}/client.js +33 -2
- package/dist/{llm → src/llm}/embedders/remote.js +37 -3
- package/dist/src/llm/feature-gate.js +108 -0
- package/dist/src/llm/graph-extract.js +107 -0
- package/dist/src/llm/index-passes.js +35 -0
- package/dist/src/llm/memory-infer.js +86 -0
- package/dist/{output → src/output}/cli-hints.js +15 -2
- package/dist/{output → src/output}/renderers.js +63 -2
- package/dist/src/output/shapes.js +523 -0
- package/dist/src/output/text.js +1116 -0
- package/dist/{registry → src/registry}/build-index.js +19 -8
- package/dist/{registry → src/registry}/factory.js +0 -8
- package/dist/{registry → src/registry}/providers/static-index.js +6 -3
- package/dist/{registry → src/registry}/resolve.js +68 -2
- package/dist/{setup → src/setup}/setup.js +52 -5
- package/dist/{sources → src/sources}/providers/git.js +7 -15
- package/dist/{wiki → src/wiki}/wiki.js +54 -6
- package/dist/{workflows → src/workflows}/runs.js +37 -3
- package/dist/tests/add-website-source.test.js +119 -0
- package/dist/tests/agent/agent-config-loader.test.js +70 -0
- package/dist/tests/agent/agent-config.test.js +221 -0
- package/dist/tests/agent/agent-detect.test.js +100 -0
- package/dist/tests/agent/agent-spawn.test.js +234 -0
- package/dist/tests/agent-output.test.js +186 -0
- package/dist/tests/architecture/agent-no-llm-sdk-guard.test.js +103 -0
- package/dist/tests/architecture/agent-spawn-seam.test.js +193 -0
- package/dist/tests/architecture/llm-stateless-seam.test.js +112 -0
- package/dist/tests/asset-ref.test.js +192 -0
- package/dist/tests/asset-registry.test.js +103 -0
- package/dist/tests/asset-spec.test.js +241 -0
- package/dist/tests/bench/attribution.test.js +996 -0
- package/dist/tests/bench/cleanup-sigint.test.js +83 -0
- package/dist/tests/bench/cleanup.js +234 -0
- package/dist/tests/bench/cleanup.test.js +166 -0
- package/dist/tests/bench/cli.js +1018 -0
- package/dist/tests/bench/cli.test.js +445 -0
- package/dist/tests/bench/compare.test.js +556 -0
- package/dist/tests/bench/corpus.js +317 -0
- package/dist/tests/bench/corpus.test.js +258 -0
- package/dist/tests/bench/doctor.js +525 -0
- package/dist/tests/bench/driver.js +401 -0
- package/dist/tests/bench/driver.test.js +584 -0
- package/dist/tests/bench/environment.js +233 -0
- package/dist/tests/bench/environment.test.js +199 -0
- package/dist/tests/bench/evolve-metrics.js +179 -0
- package/dist/tests/bench/evolve-metrics.test.js +187 -0
- package/dist/tests/bench/evolve.js +647 -0
- package/dist/tests/bench/evolve.test.js +624 -0
- package/dist/tests/bench/failure-modes.test.js +349 -0
- package/dist/tests/bench/feedback-integrity.test.js +457 -0
- package/dist/tests/bench/leakage.test.js +228 -0
- package/dist/tests/bench/learning-curve.test.js +134 -0
- package/dist/tests/bench/metrics.js +2395 -0
- package/dist/tests/bench/metrics.test.js +1150 -0
- package/dist/tests/bench/no-os-tmpdir-invariant.test.js +43 -0
- package/dist/tests/bench/opencode-config.js +194 -0
- package/dist/tests/bench/opencode-config.test.js +370 -0
- package/dist/tests/bench/report.js +1885 -0
- package/dist/tests/bench/report.test.js +1038 -0
- package/dist/tests/bench/run-config.js +355 -0
- package/dist/tests/bench/run-config.test.js +298 -0
- package/dist/tests/bench/run-curate-test.js +32 -0
- package/dist/tests/bench/run-failing-tasks.js +56 -0
- package/dist/tests/bench/run-full-bench.js +51 -0
- package/dist/tests/bench/run-items36-targeted.js +69 -0
- package/dist/tests/bench/run-nano-quick.js +42 -0
- package/dist/tests/bench/run-waveg-targeted.js +62 -0
- package/dist/tests/bench/runner.js +699 -0
- package/dist/tests/bench/runner.test.js +958 -0
- package/dist/tests/bench/search-bridge.test.js +331 -0
- package/dist/tests/bench/tmp.js +131 -0
- package/dist/tests/bench/trajectory.js +116 -0
- package/dist/tests/bench/trajectory.test.js +127 -0
- package/dist/tests/bench/verifier.js +114 -0
- package/dist/tests/bench/verifier.test.js +118 -0
- package/dist/tests/bench/workflow-evaluator.js +557 -0
- package/dist/tests/bench/workflow-evaluator.test.js +421 -0
- package/dist/tests/bench/workflow-spec.js +345 -0
- package/dist/tests/bench/workflow-spec.test.js +363 -0
- package/dist/tests/bench/workflow-trace.js +472 -0
- package/dist/tests/bench/workflow-trace.test.js +254 -0
- package/dist/tests/benchmark-search-quality.js +536 -0
- package/dist/tests/benchmark-suite.js +1441 -0
- package/dist/tests/capture-cli.test.js +112 -0
- package/dist/tests/cli-errors.test.js +204 -0
- package/dist/tests/commands/events.test.js +370 -0
- package/dist/tests/commands/history.test.js +418 -0
- package/dist/tests/commands/import.test.js +103 -0
- package/dist/tests/commands/proposal-cli.test.js +209 -0
- package/dist/tests/commands/reflect-propose-cli.test.js +333 -0
- package/dist/tests/commands/remember.test.js +97 -0
- package/dist/tests/commands/scope-flags.test.js +300 -0
- package/dist/tests/commands/search.test.js +537 -0
- package/dist/tests/commands/show-indexer-parity.test.js +117 -0
- package/dist/tests/commands/show.test.js +294 -0
- package/dist/tests/common.test.js +266 -0
- package/dist/tests/completions.test.js +142 -0
- package/dist/tests/config-cli.test.js +193 -0
- package/dist/tests/config-llm-features.test.js +139 -0
- package/dist/tests/config.test.js +569 -0
- package/dist/tests/contracts/migration-baseline.test.js +43 -0
- package/dist/tests/contracts/reflect-propose-envelope.test.js +139 -0
- package/dist/tests/contracts/spec-helpers.js +46 -0
- package/dist/tests/contracts/v1-spec-section-11-proposal-queue.test.js +228 -0
- package/dist/tests/contracts/v1-spec-section-12-agent-config.test.js +56 -0
- package/dist/tests/contracts/v1-spec-section-13-lesson-type.test.js +34 -0
- package/dist/tests/contracts/v1-spec-section-14-llm-features.test.js +94 -0
- package/dist/tests/contracts/v1-spec-section-4-1-asset-types.test.js +39 -0
- package/dist/tests/contracts/v1-spec-section-4-2-quality-rules.test.js +44 -0
- package/dist/tests/contracts/v1-spec-section-5-configuration.test.js +47 -0
- package/dist/tests/contracts/v1-spec-section-6-orchestration.test.js +40 -0
- package/dist/tests/contracts/v1-spec-section-7-module-layout.test.js +58 -0
- package/dist/tests/contracts/v1-spec-section-8-extension-points.test.js +34 -0
- package/dist/tests/contracts/v1-spec-section-9-4-cli-surface.test.js +75 -0
- package/dist/tests/contracts/v1-spec-section-9-7-llm-agent-boundary.test.js +36 -0
- package/dist/tests/core/write-source.test.js +366 -0
- package/dist/tests/curate-command.test.js +87 -0
- package/dist/tests/db-scoring.test.js +201 -0
- package/dist/tests/db.test.js +654 -0
- package/dist/tests/distill-cli-flag.test.js +208 -0
- package/dist/tests/distill.test.js +515 -0
- package/dist/tests/docker-install.test.js +120 -0
- package/dist/tests/e2e.test.js +1419 -0
- package/dist/tests/embedder.test.js +340 -0
- package/dist/tests/embedding-model-config.test.js +379 -0
- package/dist/tests/feedback-command.test.js +172 -0
- package/dist/tests/file-context.test.js +552 -0
- package/dist/tests/fixtures/scripts/git/summarize-diff.js +9 -0
- package/dist/tests/fixtures/scripts/lint/eslint-check.js +7 -0
- package/dist/tests/fixtures/stashes/load.js +166 -0
- package/dist/tests/fixtures/stashes/load.test.js +97 -0
- package/dist/tests/fixtures/stashes/ranking-baseline/scripts/mem0-search.js +12 -0
- package/dist/tests/frontmatter.test.js +190 -0
- package/dist/tests/fts-field-weighting.test.js +254 -0
- package/dist/tests/fuzzy-search.test.js +230 -0
- package/dist/tests/git-provider-clone.test.js +45 -0
- package/dist/tests/github.test.js +161 -0
- package/dist/tests/graph-boost-ranking.test.js +305 -0
- package/dist/tests/graph-extraction.test.js +282 -0
- package/dist/tests/helpers/usage-events.js +8 -0
- package/dist/tests/index-pass-llm.test.js +161 -0
- package/dist/tests/indexer.test.js +570 -0
- package/dist/tests/info-command.test.js +166 -0
- package/dist/tests/init.test.js +69 -0
- package/dist/tests/install-script.test.js +246 -0
- package/dist/tests/integration/agent-real-profile.test.js +94 -0
- package/dist/tests/issue-36-repro.test.js +304 -0
- package/dist/tests/issues-191-194.test.js +160 -0
- package/dist/tests/lesson-lint.test.js +111 -0
- package/dist/tests/llm-client.test.js +115 -0
- package/dist/tests/llm-feature-gate.test.js +151 -0
- package/dist/tests/llm.test.js +139 -0
- package/dist/tests/lockfile.test.js +216 -0
- package/dist/tests/manifest.test.js +205 -0
- package/dist/tests/markdown.test.js +126 -0
- package/dist/tests/matchers-unit.test.js +189 -0
- package/dist/tests/memory-inference.test.js +299 -0
- package/dist/tests/merge-scoring.test.js +136 -0
- package/dist/tests/metadata.test.js +313 -0
- package/dist/tests/migration-help.test.js +89 -0
- package/dist/tests/origin-resolve.test.js +124 -0
- package/dist/tests/output-baseline.test.js +218 -0
- package/dist/tests/output-shapes-unit.test.js +478 -0
- package/dist/tests/parallel-search.test.js +272 -0
- package/dist/tests/parameter-metadata.test.js +365 -0
- package/dist/tests/paths.test.js +177 -0
- package/dist/tests/progressive-disclosure.test.js +280 -0
- package/dist/tests/proposals.test.js +279 -0
- package/dist/tests/proposed-quality.test.js +271 -0
- package/dist/tests/provider-registry.test.js +32 -0
- package/dist/tests/ranking-regression.test.js +548 -0
- package/dist/tests/reflect-propose.test.js +455 -0
- package/dist/tests/registry-build-index.test.js +394 -0
- package/dist/tests/registry-cli.test.js +290 -0
- package/dist/tests/registry-index-v2.test.js +430 -0
- package/dist/tests/registry-install.test.js +728 -0
- package/dist/tests/registry-providers/parity.test.js +189 -0
- package/dist/tests/registry-providers/skills-sh.test.js +309 -0
- package/dist/tests/registry-providers/static-index.test.js +238 -0
- package/dist/tests/registry-resolve.test.js +126 -0
- package/dist/tests/registry-search.test.js +923 -0
- package/dist/tests/remember-frontmatter.test.js +378 -0
- package/dist/tests/remember-unit.test.js +123 -0
- package/dist/tests/ripgrep-install.test.js +251 -0
- package/dist/tests/ripgrep-resolve.test.js +108 -0
- package/dist/tests/ripgrep.test.js +163 -0
- package/dist/tests/save-command.test.js +94 -0
- package/dist/tests/save-trust-qa-fixes.test.js +270 -0
- package/dist/tests/scoring-pipeline.test.js +648 -0
- package/dist/tests/search-include-proposed-cli.test.js +118 -0
- package/dist/tests/self-update.test.js +442 -0
- package/dist/tests/semantic-search-e2e.test.js +512 -0
- package/dist/tests/semantic-status.test.js +471 -0
- package/dist/tests/setup-run.integration.js +877 -0
- package/dist/tests/setup-wizard.test.js +198 -0
- package/dist/tests/setup.test.js +131 -0
- package/dist/tests/source-add.test.js +11 -0
- package/dist/tests/source-clone.test.js +254 -0
- package/dist/tests/source-manage.test.js +366 -0
- package/dist/tests/source-providers/filesystem.test.js +82 -0
- package/dist/tests/source-providers/git.test.js +252 -0
- package/dist/tests/source-providers/website.test.js +128 -0
- package/dist/tests/source-qa-fixes.test.js +286 -0
- package/dist/tests/source-registry.test.js +350 -0
- package/dist/tests/source-resolve.test.js +100 -0
- package/dist/tests/source-source.test.js +281 -0
- package/dist/tests/source.test.js +533 -0
- package/dist/tests/tar-utils-scan.test.js +73 -0
- package/dist/tests/toggle-components.test.js +73 -0
- package/dist/tests/usage-telemetry.test.js +265 -0
- package/dist/tests/utility-scoring.test.js +558 -0
- package/dist/tests/vault-load-error.test.js +78 -0
- package/dist/tests/vault-qa-fixes.test.js +194 -0
- package/dist/tests/vault.test.js +429 -0
- package/dist/tests/vector-search.test.js +608 -0
- package/dist/tests/walker.test.js +252 -0
- package/dist/tests/wave2-cluster-bc.test.js +228 -0
- package/dist/tests/wave2-cluster-d.test.js +180 -0
- package/dist/tests/wave2-cluster-e.test.js +179 -0
- package/dist/tests/wiki-qa-fixes.test.js +270 -0
- package/dist/tests/wiki.test.js +529 -0
- package/dist/tests/workflow-cli.test.js +271 -0
- package/dist/tests/workflow-markdown.test.js +171 -0
- package/dist/tests/workflow-path-escape.test.js +132 -0
- package/dist/tests/workflow-qa-fixes.test.js +395 -0
- package/dist/tests/workflows/indexer-rejection.test.js +213 -0
- package/docs/README.md +8 -0
- package/docs/migration/release-notes/0.7.0.md +244 -0
- package/package.json +2 -2
- package/dist/core/warn.js +0 -27
- package/dist/output/shapes.js +0 -212
- package/dist/output/text.js +0 -520
- /package/dist/{commands → src/commands}/completions.js +0 -0
- /package/dist/{commands → src/commands}/curate.js +0 -0
- /package/dist/{commands → src/commands}/info.js +0 -0
- /package/dist/{commands → src/commands}/init.js +0 -0
- /package/dist/{commands → src/commands}/install-audit.js +0 -0
- /package/dist/{commands → src/commands}/migration-help.js +0 -0
- /package/dist/{commands → src/commands}/source-clone.js +0 -0
- /package/dist/{commands → src/commands}/vault.js +0 -0
- /package/dist/{core → src/core}/asset-registry.js +0 -0
- /package/dist/{core → src/core}/frontmatter.js +0 -0
- /package/dist/{core → src/core}/markdown.js +0 -0
- /package/dist/{core → src/core}/paths.js +0 -0
- /package/dist/{indexer → src/indexer}/manifest.js +0 -0
- /package/dist/{indexer → src/indexer}/search-fields.js +0 -0
- /package/dist/{indexer → src/indexer}/semantic-status.js +0 -0
- /package/dist/{indexer → src/indexer}/usage-events.js +0 -0
- /package/dist/{indexer → src/indexer}/walker.js +0 -0
- /package/dist/{llm → src/llm}/embedder.js +0 -0
- /package/dist/{llm → src/llm}/embedders/cache.js +0 -0
- /package/dist/{llm → src/llm}/embedders/local.js +0 -0
- /package/dist/{llm → src/llm}/embedders/types.js +0 -0
- /package/dist/{llm → src/llm}/metadata-enhance.js +0 -0
- /package/dist/{output → src/output}/context.js +0 -0
- /package/dist/{registry → src/registry}/create-provider-registry.js +0 -0
- /package/dist/{registry → src/registry}/origin-resolve.js +0 -0
- /package/dist/{registry → src/registry}/providers/index.js +0 -0
- /package/dist/{registry → src/registry}/providers/skills-sh.js +0 -0
- /package/dist/{registry → src/registry}/providers/types.js +0 -0
- /package/dist/{registry → src/registry}/types.js +0 -0
- /package/dist/{setup → src/setup}/detect.js +0 -0
- /package/dist/{setup → src/setup}/ripgrep-install.js +0 -0
- /package/dist/{setup → src/setup}/ripgrep-resolve.js +0 -0
- /package/dist/{setup → src/setup}/steps.js +0 -0
- /package/dist/{sources → src/sources}/include.js +0 -0
- /package/dist/{sources → src/sources}/provider-factory.js +0 -0
- /package/dist/{sources → src/sources}/provider.js +0 -0
- /package/dist/{sources → src/sources}/providers/filesystem.js +0 -0
- /package/dist/{sources → src/sources}/providers/index.js +0 -0
- /package/dist/{sources → src/sources}/providers/install-types.js +0 -0
- /package/dist/{sources → src/sources}/providers/npm.js +0 -0
- /package/dist/{sources → src/sources}/providers/provider-utils.js +0 -0
- /package/dist/{sources → src/sources}/providers/sync-from-ref.js +0 -0
- /package/dist/{sources → src/sources}/providers/tar-utils.js +0 -0
- /package/dist/{sources → src/sources}/providers/website.js +0 -0
- /package/dist/{sources → src/sources}/resolve.js +0 -0
- /package/dist/{sources → src/sources}/types.js +0 -0
- /package/dist/{templates → src/templates}/wiki-templates.js +0 -0
- /package/dist/{version.js → src/version.js} +0 -0
- /package/dist/{workflows → src/workflows}/authoring.js +0 -0
- /package/dist/{workflows → src/workflows}/cli.js +0 -0
- /package/dist/{workflows → src/workflows}/db.js +0 -0
- /package/dist/{workflows → src/workflows}/document-cache.js +0 -0
- /package/dist/{workflows → src/workflows}/parser.js +0 -0
- /package/dist/{workflows → src/workflows}/renderer.js +0 -0
- /package/dist/{workflows → src/workflows}/schema.js +0 -0
- /package/dist/{workflows → src/workflows}/validator.js +0 -0
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Reproduction test for issue #36: Search and index issues
|
|
3
|
+
*
|
|
4
|
+
* Problem: Scripts in the stash aren't found via `akm search` with keywords
|
|
5
|
+
* like "foundry", "provision", "ai" — even though the file
|
|
6
|
+
* `provision-ai-foundry.sh` exists under scripts/.
|
|
7
|
+
*
|
|
8
|
+
* Also covers: sqlite-vec extension not available on macOS arm binary install.
|
|
9
|
+
*/
|
|
10
|
+
import { afterAll, afterEach, beforeEach, describe, expect, test } from "bun:test";
|
|
11
|
+
import fs from "node:fs";
|
|
12
|
+
import os from "node:os";
|
|
13
|
+
import path from "node:path";
|
|
14
|
+
import { akmSearch } from "../src/commands/search";
|
|
15
|
+
import { saveConfig } from "../src/core/config";
|
|
16
|
+
import { closeDatabase, getAllEntries, openDatabase, searchFts } from "../src/indexer/db";
|
|
17
|
+
import { akmIndex } from "../src/indexer/indexer";
|
|
18
|
+
// ── Temp directory tracking ─────────────────────────────────────────────────
|
|
19
|
+
const createdTmpDirs = [];
|
|
20
|
+
function createTmpDir(prefix = "akm-issue36-") {
|
|
21
|
+
const dir = fs.mkdtempSync(path.join(os.tmpdir(), prefix));
|
|
22
|
+
createdTmpDirs.push(dir);
|
|
23
|
+
return dir;
|
|
24
|
+
}
|
|
25
|
+
afterAll(() => {
|
|
26
|
+
for (const dir of createdTmpDirs) {
|
|
27
|
+
fs.rmSync(dir, { recursive: true, force: true });
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
// ── Helpers ─────────────────────────────────────────────────────────────────
|
|
31
|
+
function writeFile(filePath, content = "") {
|
|
32
|
+
fs.mkdirSync(path.dirname(filePath), { recursive: true });
|
|
33
|
+
fs.writeFileSync(filePath, content);
|
|
34
|
+
}
|
|
35
|
+
function tmpStash() {
|
|
36
|
+
const dir = createTmpDir("akm-issue36-stash-");
|
|
37
|
+
for (const sub of ["scripts", "skills", "commands", "agents", "knowledge"]) {
|
|
38
|
+
fs.mkdirSync(path.join(dir, sub), { recursive: true });
|
|
39
|
+
}
|
|
40
|
+
return dir;
|
|
41
|
+
}
|
|
42
|
+
async function buildTestIndex(stashDir, files = {}) {
|
|
43
|
+
for (const [relPath, content] of Object.entries(files)) {
|
|
44
|
+
const fullPath = path.join(stashDir, relPath);
|
|
45
|
+
fs.mkdirSync(path.dirname(fullPath), { recursive: true });
|
|
46
|
+
fs.writeFileSync(fullPath, content);
|
|
47
|
+
}
|
|
48
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
49
|
+
saveConfig({ semanticSearchMode: "off" });
|
|
50
|
+
return akmIndex({ stashDir, full: true });
|
|
51
|
+
}
|
|
52
|
+
// ── Environment isolation ───────────────────────────────────────────────────
|
|
53
|
+
const originalXdgCacheHome = process.env.XDG_CACHE_HOME;
|
|
54
|
+
const originalXdgConfigHome = process.env.XDG_CONFIG_HOME;
|
|
55
|
+
const originalAkmStashDir = process.env.AKM_STASH_DIR;
|
|
56
|
+
let testCacheDir = "";
|
|
57
|
+
let testConfigDir = "";
|
|
58
|
+
beforeEach(() => {
|
|
59
|
+
testCacheDir = createTmpDir("akm-issue36-cache-");
|
|
60
|
+
testConfigDir = createTmpDir("akm-issue36-config-");
|
|
61
|
+
process.env.XDG_CACHE_HOME = testCacheDir;
|
|
62
|
+
process.env.XDG_CONFIG_HOME = testConfigDir;
|
|
63
|
+
});
|
|
64
|
+
afterEach(() => {
|
|
65
|
+
if (originalXdgCacheHome === undefined) {
|
|
66
|
+
delete process.env.XDG_CACHE_HOME;
|
|
67
|
+
}
|
|
68
|
+
else {
|
|
69
|
+
process.env.XDG_CACHE_HOME = originalXdgCacheHome;
|
|
70
|
+
}
|
|
71
|
+
if (originalXdgConfigHome === undefined) {
|
|
72
|
+
delete process.env.XDG_CONFIG_HOME;
|
|
73
|
+
}
|
|
74
|
+
else {
|
|
75
|
+
process.env.XDG_CONFIG_HOME = originalXdgConfigHome;
|
|
76
|
+
}
|
|
77
|
+
if (originalAkmStashDir === undefined) {
|
|
78
|
+
delete process.env.AKM_STASH_DIR;
|
|
79
|
+
}
|
|
80
|
+
else {
|
|
81
|
+
process.env.AKM_STASH_DIR = originalAkmStashDir;
|
|
82
|
+
}
|
|
83
|
+
if (testCacheDir) {
|
|
84
|
+
fs.rmSync(testCacheDir, { recursive: true, force: true });
|
|
85
|
+
testCacheDir = "";
|
|
86
|
+
}
|
|
87
|
+
if (testConfigDir) {
|
|
88
|
+
fs.rmSync(testConfigDir, { recursive: true, force: true });
|
|
89
|
+
testConfigDir = "";
|
|
90
|
+
}
|
|
91
|
+
});
|
|
92
|
+
// ── Issue #36 reproduction tests ────────────────────────────────────────────
|
|
93
|
+
describe("Issue #36: Script search and index", () => {
|
|
94
|
+
test("scripts placed directly in scripts/ dir are indexed", async () => {
|
|
95
|
+
const stashDir = tmpStash();
|
|
96
|
+
// Mimics the reported scenario: a script file placed directly in scripts/
|
|
97
|
+
writeFile(path.join(stashDir, "scripts", "provision-ai-foundry.sh"), "#!/usr/bin/env bash\n# Provision AI Foundry resources on Azure\naz group create --name ai-foundry\n");
|
|
98
|
+
const result = await buildTestIndex(stashDir);
|
|
99
|
+
expect(result.totalEntries).toBeGreaterThanOrEqual(1);
|
|
100
|
+
// Verify the script entry was created in the index
|
|
101
|
+
const db = openDatabase();
|
|
102
|
+
try {
|
|
103
|
+
const entries = getAllEntries(db);
|
|
104
|
+
const scriptEntries = entries.filter((e) => e.entry.type === "script");
|
|
105
|
+
expect(scriptEntries.length).toBeGreaterThanOrEqual(1);
|
|
106
|
+
const foundryEntry = scriptEntries.find((e) => e.entry.name.includes("provision") || e.entry.name.includes("foundry"));
|
|
107
|
+
expect(foundryEntry).toBeDefined();
|
|
108
|
+
}
|
|
109
|
+
finally {
|
|
110
|
+
closeDatabase(db);
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
test("search for 'foundry' finds provision-ai-foundry.sh", async () => {
|
|
114
|
+
const stashDir = tmpStash();
|
|
115
|
+
writeFile(path.join(stashDir, "scripts", "provision-ai-foundry.sh"), "#!/usr/bin/env bash\n# Provision AI Foundry resources on Azure\naz group create --name ai-foundry\n");
|
|
116
|
+
await buildTestIndex(stashDir);
|
|
117
|
+
const result = await akmSearch({ query: "foundry", source: "local" });
|
|
118
|
+
const localHits = result.hits.filter((h) => h.type !== "registry");
|
|
119
|
+
expect(localHits.length).toBeGreaterThanOrEqual(1);
|
|
120
|
+
const foundryHit = localHits.find((h) => h.name.includes("foundry") || h.name.includes("provision"));
|
|
121
|
+
expect(foundryHit).toBeDefined();
|
|
122
|
+
});
|
|
123
|
+
test("search for 'provision' finds provision-ai-foundry.sh", async () => {
|
|
124
|
+
const stashDir = tmpStash();
|
|
125
|
+
writeFile(path.join(stashDir, "scripts", "provision-ai-foundry.sh"), "#!/usr/bin/env bash\n# Provision AI Foundry resources on Azure\naz group create --name ai-foundry\n");
|
|
126
|
+
await buildTestIndex(stashDir);
|
|
127
|
+
const result = await akmSearch({ query: "provision", source: "local" });
|
|
128
|
+
const localHits = result.hits.filter((h) => h.type !== "registry");
|
|
129
|
+
expect(localHits.length).toBeGreaterThanOrEqual(1);
|
|
130
|
+
const hit = localHits.find((h) => h.name.includes("provision") || h.name.includes("foundry"));
|
|
131
|
+
expect(hit).toBeDefined();
|
|
132
|
+
});
|
|
133
|
+
test("search for 'ai' finds provision-ai-foundry.sh", async () => {
|
|
134
|
+
const stashDir = tmpStash();
|
|
135
|
+
writeFile(path.join(stashDir, "scripts", "provision-ai-foundry.sh"), "#!/usr/bin/env bash\n# Provision AI Foundry resources on Azure\naz group create --name ai-foundry\n");
|
|
136
|
+
await buildTestIndex(stashDir);
|
|
137
|
+
const result = await akmSearch({ query: "ai", source: "local" });
|
|
138
|
+
const localHits = result.hits.filter((h) => h.type !== "registry");
|
|
139
|
+
expect(localHits.length).toBeGreaterThanOrEqual(1);
|
|
140
|
+
const hit = localHits.find((h) => h.name.includes("provision") || h.name.includes("foundry") || h.name.includes("ai"));
|
|
141
|
+
expect(hit).toBeDefined();
|
|
142
|
+
});
|
|
143
|
+
test("multiple scripts in scripts/ dir are all indexed", async () => {
|
|
144
|
+
const stashDir = tmpStash();
|
|
145
|
+
// Scenario: multiple scripts placed flat in scripts/ (not in subdirectories)
|
|
146
|
+
const scripts = {
|
|
147
|
+
"scripts/provision-ai-foundry.sh": "#!/bin/bash\n# Provision AI Foundry\necho provision\n",
|
|
148
|
+
"scripts/deploy-webapp.sh": "#!/bin/bash\n# Deploy web application\necho deploy\n",
|
|
149
|
+
"scripts/backup-database.py": "#!/usr/bin/env python3\n# Backup the database\nprint('backup')\n",
|
|
150
|
+
"scripts/setup-environment.sh": "#!/bin/bash\n# Set up dev environment\necho setup\n",
|
|
151
|
+
"scripts/run-tests.ts": "// Run all test suites\nconsole.log('test')\n",
|
|
152
|
+
};
|
|
153
|
+
const result = await buildTestIndex(stashDir, scripts);
|
|
154
|
+
// All 5 scripts should be indexed
|
|
155
|
+
expect(result.totalEntries).toBeGreaterThanOrEqual(5);
|
|
156
|
+
const db = openDatabase();
|
|
157
|
+
try {
|
|
158
|
+
const entries = getAllEntries(db);
|
|
159
|
+
const scriptEntries = entries.filter((e) => e.entry.type === "script");
|
|
160
|
+
expect(scriptEntries.length).toBe(5);
|
|
161
|
+
}
|
|
162
|
+
finally {
|
|
163
|
+
closeDatabase(db);
|
|
164
|
+
}
|
|
165
|
+
});
|
|
166
|
+
test("scripts in subdirectories of scripts/ are indexed", async () => {
|
|
167
|
+
const stashDir = tmpStash();
|
|
168
|
+
writeFile(path.join(stashDir, "scripts", "azure", "provision-ai-foundry.sh"), "#!/bin/bash\n# Provision AI Foundry\necho provision\n");
|
|
169
|
+
const result = await buildTestIndex(stashDir);
|
|
170
|
+
expect(result.totalEntries).toBeGreaterThanOrEqual(1);
|
|
171
|
+
const searchResult = await akmSearch({ query: "foundry", source: "local" });
|
|
172
|
+
const localHits = searchResult.hits.filter((h) => h.type !== "registry");
|
|
173
|
+
expect(localHits.length).toBeGreaterThanOrEqual(1);
|
|
174
|
+
});
|
|
175
|
+
});
|
|
176
|
+
describe("Issue #36: buildSearchText includes script content from comments", () => {
|
|
177
|
+
test("buildSearchText includes description derived from comments for scripts", async () => {
|
|
178
|
+
const stashDir = tmpStash();
|
|
179
|
+
writeFile(path.join(stashDir, "scripts", "provision-ai-foundry.sh"), "#!/usr/bin/env bash\n# Provision AI Foundry resources on Azure\naz group create --name ai-foundry\n");
|
|
180
|
+
await buildTestIndex(stashDir);
|
|
181
|
+
const db = openDatabase();
|
|
182
|
+
try {
|
|
183
|
+
const entries = getAllEntries(db);
|
|
184
|
+
const scriptEntry = entries.find((e) => e.entry.name.includes("provision"));
|
|
185
|
+
expect(scriptEntry).toBeDefined();
|
|
186
|
+
// The search text should include words from filename AND from the description
|
|
187
|
+
// (which is extracted from the comment header)
|
|
188
|
+
const searchText = scriptEntry?.searchText;
|
|
189
|
+
expect(searchText).toContain("provision");
|
|
190
|
+
expect(searchText).toContain("foundry");
|
|
191
|
+
}
|
|
192
|
+
finally {
|
|
193
|
+
closeDatabase(db);
|
|
194
|
+
}
|
|
195
|
+
});
|
|
196
|
+
});
|
|
197
|
+
describe("Issue #36: FTS5 query sanitization", () => {
|
|
198
|
+
test("sanitizeFtsQuery keeps short but valid tokens like 'ai'", async () => {
|
|
199
|
+
const stashDir = tmpStash();
|
|
200
|
+
writeFile(path.join(stashDir, "scripts", "ai-helper.sh"), "#!/bin/bash\n# AI helper script\necho ai\n");
|
|
201
|
+
await buildTestIndex(stashDir);
|
|
202
|
+
// Directly test FTS with "ai" query
|
|
203
|
+
const db = openDatabase();
|
|
204
|
+
try {
|
|
205
|
+
const results = searchFts(db, "ai", 10);
|
|
206
|
+
expect(results.length).toBeGreaterThanOrEqual(1);
|
|
207
|
+
}
|
|
208
|
+
finally {
|
|
209
|
+
closeDatabase(db);
|
|
210
|
+
}
|
|
211
|
+
});
|
|
212
|
+
test("sanitizeFtsQuery preserves single-character tokens", async () => {
|
|
213
|
+
const stashDir = tmpStash();
|
|
214
|
+
writeFile(path.join(stashDir, "scripts", "x-tool.sh"), "#!/bin/bash\n# X tool\necho x\n");
|
|
215
|
+
await buildTestIndex(stashDir);
|
|
216
|
+
// Single-char tokens are now passed through to FTS5 so that searches
|
|
217
|
+
// for short identifiers (e.g., "R", "C", "x") can return results.
|
|
218
|
+
const db = openDatabase();
|
|
219
|
+
try {
|
|
220
|
+
const results = searchFts(db, "x", 10);
|
|
221
|
+
// "x" appears in the indexed search text, so FTS should find it
|
|
222
|
+
expect(results.length).toBeGreaterThanOrEqual(1);
|
|
223
|
+
}
|
|
224
|
+
finally {
|
|
225
|
+
closeDatabase(db);
|
|
226
|
+
}
|
|
227
|
+
});
|
|
228
|
+
});
|
|
229
|
+
describe("Issue #36: Stale .stash.json prevents new files from being indexed", () => {
|
|
230
|
+
test("new files added after initial index are discovered on re-index", async () => {
|
|
231
|
+
const stashDir = tmpStash();
|
|
232
|
+
// Step 1: Create initial scripts and index
|
|
233
|
+
writeFile(path.join(stashDir, "scripts", "deploy-app.sh"), "#!/bin/bash\n# Deploy application\necho deploy\n");
|
|
234
|
+
writeFile(path.join(stashDir, "scripts", "backup-db.sh"), "#!/bin/bash\n# Backup database\necho backup\n");
|
|
235
|
+
const result1 = await buildTestIndex(stashDir);
|
|
236
|
+
expect(result1.totalEntries).toBe(2);
|
|
237
|
+
// No .stash.json should be auto-generated
|
|
238
|
+
const stashJsonPath = path.join(stashDir, "scripts", ".stash.json");
|
|
239
|
+
expect(fs.existsSync(stashJsonPath)).toBe(false);
|
|
240
|
+
// Step 2: Add a NEW script file after the initial index
|
|
241
|
+
writeFile(path.join(stashDir, "scripts", "provision-ai-foundry.sh"), "#!/usr/bin/env bash\n# Provision AI Foundry resources\naz group create --name ai-foundry\n");
|
|
242
|
+
// Step 3: Re-index (full rebuild) — all files discovered without .stash.json
|
|
243
|
+
const result2 = await buildTestIndex(stashDir);
|
|
244
|
+
expect(result2.totalEntries).toBe(3);
|
|
245
|
+
// Step 4: Verify the new script is searchable
|
|
246
|
+
const searchResult = await akmSearch({ query: "foundry", source: "local" });
|
|
247
|
+
const localHits = searchResult.hits.filter((h) => h.type !== "registry");
|
|
248
|
+
expect(localHits.length).toBeGreaterThanOrEqual(1);
|
|
249
|
+
const foundryHit = localHits.find((h) => h.name.includes("foundry") || h.name.includes("provision"));
|
|
250
|
+
expect(foundryHit).toBeDefined();
|
|
251
|
+
});
|
|
252
|
+
test("incremental index discovers newly added scripts in existing directory", async () => {
|
|
253
|
+
const stashDir = tmpStash();
|
|
254
|
+
// Initial index with one script
|
|
255
|
+
writeFile(path.join(stashDir, "scripts", "existing.sh"), "#!/bin/bash\n# Existing script\necho existing\n");
|
|
256
|
+
await buildTestIndex(stashDir);
|
|
257
|
+
// Add new script and run incremental index
|
|
258
|
+
writeFile(path.join(stashDir, "scripts", "provision-ai-foundry.sh"), "#!/usr/bin/env bash\n# Provision AI Foundry resources\necho provision\n");
|
|
259
|
+
// Incremental index (not full)
|
|
260
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
261
|
+
saveConfig({ semanticSearchMode: "off" });
|
|
262
|
+
const result = await akmIndex({ stashDir });
|
|
263
|
+
// Both scripts should be in the index
|
|
264
|
+
expect(result.totalEntries).toBe(2);
|
|
265
|
+
// Search should find the new script
|
|
266
|
+
const searchResult = await akmSearch({ query: "provision", source: "local" });
|
|
267
|
+
const localHits = searchResult.hits.filter((h) => h.type !== "registry");
|
|
268
|
+
expect(localHits.length).toBeGreaterThanOrEqual(1);
|
|
269
|
+
});
|
|
270
|
+
});
|
|
271
|
+
describe("Issue #36: Search path and installed source indexing", () => {
|
|
272
|
+
test("scripts from search path sources are indexed and searchable", async () => {
|
|
273
|
+
const workingStash = tmpStash();
|
|
274
|
+
const searchPathStash = tmpStash();
|
|
275
|
+
// Put the script in the search path, not the primary stash
|
|
276
|
+
writeFile(path.join(searchPathStash, "scripts", "provision-ai-foundry.sh"), "#!/usr/bin/env bash\n# Provision AI Foundry resources on Azure\naz group create --name ai-foundry\n");
|
|
277
|
+
process.env.AKM_STASH_DIR = workingStash;
|
|
278
|
+
saveConfig({ semanticSearchMode: "off", sources: [{ type: "filesystem", path: searchPathStash }] });
|
|
279
|
+
await akmIndex({ stashDir: workingStash, full: true });
|
|
280
|
+
const result = await akmSearch({ query: "foundry", source: "local" });
|
|
281
|
+
const localHits = result.hits.filter((h) => h.type !== "registry");
|
|
282
|
+
expect(localHits.length).toBeGreaterThanOrEqual(1);
|
|
283
|
+
const hit = localHits.find((h) => h.name.includes("foundry") || h.name.includes("provision"));
|
|
284
|
+
expect(hit).toBeDefined();
|
|
285
|
+
});
|
|
286
|
+
test("empty primary stash + populated search path still indexes all assets", async () => {
|
|
287
|
+
const workingStash = tmpStash(); // empty
|
|
288
|
+
const searchPathStash = tmpStash();
|
|
289
|
+
// Populate search path with various assets
|
|
290
|
+
writeFile(path.join(searchPathStash, "scripts", "provision-ai-foundry.sh"), "#!/bin/bash\n# Provision AI Foundry\necho foundry\n");
|
|
291
|
+
writeFile(path.join(searchPathStash, "scripts", "deploy-app.sh"), "#!/bin/bash\n# Deploy application\necho deploy\n");
|
|
292
|
+
writeFile(path.join(searchPathStash, "scripts", "lint", "lint.sh"), "#!/bin/bash\n# Lint code\necho lint\n");
|
|
293
|
+
writeFile(path.join(searchPathStash, "commands", "release.md"), "---\ndescription: Release the project\n---\n# Release\n");
|
|
294
|
+
process.env.AKM_STASH_DIR = workingStash;
|
|
295
|
+
saveConfig({ semanticSearchMode: "off", sources: [{ type: "filesystem", path: searchPathStash }] });
|
|
296
|
+
const indexResult = await akmIndex({ stashDir: workingStash, full: true });
|
|
297
|
+
// All 4 assets from the search path should be indexed
|
|
298
|
+
expect(indexResult.totalEntries).toBeGreaterThanOrEqual(4);
|
|
299
|
+
// Verify search finds the script
|
|
300
|
+
const searchResult = await akmSearch({ query: "foundry", source: "local" });
|
|
301
|
+
const localHits = searchResult.hits.filter((h) => h.type !== "registry");
|
|
302
|
+
expect(localHits.length).toBeGreaterThanOrEqual(1);
|
|
303
|
+
});
|
|
304
|
+
});
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Regression tests for GitHub issues 191–194 (filed against 0.6.0-rc1).
|
|
3
|
+
*
|
|
4
|
+
* Issue 191 — search misses freshly-added memory
|
|
5
|
+
* Status at re-run: NOT REPRODUCING. Test asserts the current correct
|
|
6
|
+
* behavior so we don't regress.
|
|
7
|
+
*
|
|
8
|
+
* Issue 192 — `akm list` reports no stash after `akm init`
|
|
9
|
+
* Status at re-run: NOT REPRODUCING. Test asserts the current correct
|
|
10
|
+
* behavior so we don't regress.
|
|
11
|
+
*
|
|
12
|
+
* Issue 193 — `database is locked` during normal CLI use
|
|
13
|
+
* Status at re-run: NOT REPRODUCING under heavy concurrency, but the
|
|
14
|
+
* underlying gap (no `PRAGMA busy_timeout`) is real. Test asserts the
|
|
15
|
+
* pragma is set after fix.
|
|
16
|
+
*
|
|
17
|
+
* Issue 194 — `workflowEntryId: null` after `workflow create --from`
|
|
18
|
+
* Status at re-run: REPRODUCED. Test asserts the field is non-null on
|
|
19
|
+
* first start after a fresh import.
|
|
20
|
+
*/
|
|
21
|
+
import { afterEach, describe, expect, test } from "bun:test";
|
|
22
|
+
import { spawnSync } from "node:child_process";
|
|
23
|
+
import fs from "node:fs";
|
|
24
|
+
import os from "node:os";
|
|
25
|
+
import path from "node:path";
|
|
26
|
+
const CLI = path.join(__dirname, "..", "src", "cli.ts");
|
|
27
|
+
const tempDirs = [];
|
|
28
|
+
function makeTempDir(prefix) {
|
|
29
|
+
const dir = fs.mkdtempSync(path.join(os.tmpdir(), prefix));
|
|
30
|
+
tempDirs.push(dir);
|
|
31
|
+
return dir;
|
|
32
|
+
}
|
|
33
|
+
function makeEnv() {
|
|
34
|
+
const akmHome = makeTempDir("akm-issue-rc1-");
|
|
35
|
+
return {
|
|
36
|
+
...process.env,
|
|
37
|
+
HOME: akmHome,
|
|
38
|
+
XDG_CONFIG_HOME: path.join(akmHome, "config"),
|
|
39
|
+
XDG_CACHE_HOME: path.join(akmHome, "cache"),
|
|
40
|
+
XDG_DATA_HOME: path.join(akmHome, "data"),
|
|
41
|
+
AKM_STASH_DIR: path.join(akmHome, "stash"),
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
function runCli(args, env) {
|
|
45
|
+
return spawnSync("bun", [CLI, ...args], {
|
|
46
|
+
encoding: "utf8",
|
|
47
|
+
timeout: 60_000,
|
|
48
|
+
env,
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
afterEach(() => {
|
|
52
|
+
for (const dir of tempDirs.splice(0)) {
|
|
53
|
+
fs.rmSync(dir, { recursive: true, force: true });
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
const ACA_WORKFLOW = `---
|
|
57
|
+
description: Test workflow imported via workflow create --from
|
|
58
|
+
tags:
|
|
59
|
+
- test
|
|
60
|
+
params:
|
|
61
|
+
app_name: name of the app
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
# Workflow: Imported Test Workflow
|
|
65
|
+
|
|
66
|
+
## Step: First Step
|
|
67
|
+
Step ID: first-step
|
|
68
|
+
|
|
69
|
+
### Instructions
|
|
70
|
+
Do thing one.
|
|
71
|
+
|
|
72
|
+
### Completion Criteria
|
|
73
|
+
- Done
|
|
74
|
+
|
|
75
|
+
## Step: Second Step
|
|
76
|
+
Step ID: second-step
|
|
77
|
+
|
|
78
|
+
### Instructions
|
|
79
|
+
Do thing two.
|
|
80
|
+
|
|
81
|
+
### Completion Criteria
|
|
82
|
+
- Done
|
|
83
|
+
`;
|
|
84
|
+
describe("issue #191 — memory search misses freshly-added memory", () => {
|
|
85
|
+
test("exact-phrase search returns the memory hit at high score", () => {
|
|
86
|
+
const env = makeEnv();
|
|
87
|
+
expect(runCli(["init"], env).status).toBe(0);
|
|
88
|
+
const phrase = "Sandbox memory for rc1 test";
|
|
89
|
+
const remembered = runCli(["remember", phrase], env);
|
|
90
|
+
expect(remembered.status).toBe(0);
|
|
91
|
+
const searched = runCli(["search", phrase, "--format", "json", "--detail", "full"], env);
|
|
92
|
+
expect(searched.status).toBe(0);
|
|
93
|
+
const json = JSON.parse(searched.stdout);
|
|
94
|
+
const memoryHit = json.hits.find((h) => h.type === "memory");
|
|
95
|
+
expect(memoryHit).toBeDefined();
|
|
96
|
+
expect(memoryHit?.score ?? 0).toBeGreaterThan(0.5);
|
|
97
|
+
});
|
|
98
|
+
});
|
|
99
|
+
describe("issue #192 — `akm list` after `akm init`", () => {
|
|
100
|
+
test("list resolves the stashDir written by init", () => {
|
|
101
|
+
const env = makeEnv();
|
|
102
|
+
const initRes = runCli(["init"], env);
|
|
103
|
+
expect(initRes.status).toBe(0);
|
|
104
|
+
const initJson = JSON.parse(initRes.stdout);
|
|
105
|
+
const listRes = runCli(["list", "--format", "json"], env);
|
|
106
|
+
expect(listRes.status).toBe(0);
|
|
107
|
+
const listJson = JSON.parse(listRes.stdout);
|
|
108
|
+
expect(listJson.stashDir).toBe(initJson.stashDir);
|
|
109
|
+
});
|
|
110
|
+
});
|
|
111
|
+
describe("issue #193 — database is locked under contention", () => {
|
|
112
|
+
test("openDatabase sets PRAGMA busy_timeout so contended writers wait", async () => {
|
|
113
|
+
// Use the actual openDatabase helper via dynamic import so we exercise
|
|
114
|
+
// the same code path the CLI uses.
|
|
115
|
+
const { openDatabase, closeDatabase } = await import("../src/indexer/db");
|
|
116
|
+
const tmp = path.join(makeTempDir("akm-issue-193-"), "test.db");
|
|
117
|
+
const db = openDatabase(tmp);
|
|
118
|
+
try {
|
|
119
|
+
const row = db.prepare("PRAGMA busy_timeout").get();
|
|
120
|
+
expect(row).toBeDefined();
|
|
121
|
+
// Any non-zero value is acceptable; we just want the pragma set so
|
|
122
|
+
// SQLITE_BUSY is retried instead of bubbling up to the user.
|
|
123
|
+
expect(row.timeout ?? 0).toBeGreaterThan(0);
|
|
124
|
+
}
|
|
125
|
+
finally {
|
|
126
|
+
closeDatabase(db);
|
|
127
|
+
}
|
|
128
|
+
});
|
|
129
|
+
test("WAL journal mode is preserved (regression guard)", async () => {
|
|
130
|
+
const { openDatabase, closeDatabase } = await import("../src/indexer/db");
|
|
131
|
+
const tmp = path.join(makeTempDir("akm-issue-193-wal-"), "test.db");
|
|
132
|
+
const db = openDatabase(tmp);
|
|
133
|
+
try {
|
|
134
|
+
const row = db.prepare("PRAGMA journal_mode").get();
|
|
135
|
+
expect(row.journal_mode?.toLowerCase()).toBe("wal");
|
|
136
|
+
}
|
|
137
|
+
finally {
|
|
138
|
+
closeDatabase(db);
|
|
139
|
+
}
|
|
140
|
+
});
|
|
141
|
+
});
|
|
142
|
+
describe("issue #194 — workflow create --from then start has non-null workflowEntryId", () => {
|
|
143
|
+
test("imported workflow run carries a real numeric workflowEntryId", () => {
|
|
144
|
+
const env = makeEnv();
|
|
145
|
+
expect(runCli(["init"], env).status).toBe(0);
|
|
146
|
+
const sourceDir = makeTempDir("akm-issue-194-src-");
|
|
147
|
+
const sourcePath = path.join(sourceDir, "imported.md");
|
|
148
|
+
fs.writeFileSync(sourcePath, ACA_WORKFLOW, "utf8");
|
|
149
|
+
const created = runCli(["workflow", "create", "imported", "--from", sourcePath], env);
|
|
150
|
+
expect(created.status).toBe(0);
|
|
151
|
+
// No explicit `akm index` — `workflow create --from` should leave the
|
|
152
|
+
// FTS index in a state that lets `workflow start` resolve a workflowEntryId.
|
|
153
|
+
const started = runCli(["workflow", "start", "workflow:imported", "--params", '{"app_name":"sandbox-app"}'], env);
|
|
154
|
+
expect(started.status).toBe(0);
|
|
155
|
+
const startJson = JSON.parse(started.stdout);
|
|
156
|
+
expect(startJson.run.id).toBeTruthy();
|
|
157
|
+
expect(startJson.run.workflowEntryId).not.toBeNull();
|
|
158
|
+
expect(typeof startJson.run.workflowEntryId).toBe("number");
|
|
159
|
+
});
|
|
160
|
+
});
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lint contract for the `lesson` asset type (v1 spec §13).
|
|
3
|
+
*
|
|
4
|
+
* `description` and `when_to_use` are required, non-empty single-line
|
|
5
|
+
* strings. The lint module produces structured findings; the strict
|
|
6
|
+
* variant (`assertLessonValid`) throws a `UsageError` whose message
|
|
7
|
+
* includes the offending file path and which fields failed.
|
|
8
|
+
*/
|
|
9
|
+
import { afterAll, beforeAll, describe, expect, test } from "bun:test";
|
|
10
|
+
import fs from "node:fs";
|
|
11
|
+
import os from "node:os";
|
|
12
|
+
import path from "node:path";
|
|
13
|
+
import { ASSET_SPECS, TYPE_DIRS } from "../src/core/asset-spec";
|
|
14
|
+
import { UsageError } from "../src/core/errors";
|
|
15
|
+
import { assertLessonValid, lintLessonContent, lintLessonFile } from "../src/core/lesson-lint";
|
|
16
|
+
describe("lesson asset type registration (v1 spec §13)", () => {
|
|
17
|
+
test("`lesson` is a built-in asset type with stashDir `lessons`", () => {
|
|
18
|
+
expect(ASSET_SPECS.lesson).toBeDefined();
|
|
19
|
+
expect(TYPE_DIRS.lesson).toBe("lessons");
|
|
20
|
+
});
|
|
21
|
+
test("`lesson` registers a renderer and an action builder", () => {
|
|
22
|
+
expect(ASSET_SPECS.lesson.rendererName).toBe("lesson-md");
|
|
23
|
+
expect(typeof ASSET_SPECS.lesson.actionBuilder).toBe("function");
|
|
24
|
+
});
|
|
25
|
+
test("`lesson` accepts `.md` files only", () => {
|
|
26
|
+
expect(ASSET_SPECS.lesson.isRelevantFile("foo.md")).toBe(true);
|
|
27
|
+
expect(ASSET_SPECS.lesson.isRelevantFile("foo.txt")).toBe(false);
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
describe("lintLessonContent (deterministic, no fs)", () => {
|
|
31
|
+
test("passes when both required fields are present and non-empty", () => {
|
|
32
|
+
const raw = [
|
|
33
|
+
"---",
|
|
34
|
+
"description: Always check the cache before fetching",
|
|
35
|
+
"when_to_use: When the upstream service is rate-limited",
|
|
36
|
+
"---",
|
|
37
|
+
"",
|
|
38
|
+
"Body.",
|
|
39
|
+
].join("\n");
|
|
40
|
+
const report = lintLessonContent(raw, "/virtual/lesson.md");
|
|
41
|
+
expect(report.findings).toEqual([]);
|
|
42
|
+
});
|
|
43
|
+
test("flags missing description with the offending file path", () => {
|
|
44
|
+
const raw = ["---", "when_to_use: when X", "---", "Body."].join("\n");
|
|
45
|
+
const report = lintLessonContent(raw, "/virtual/no-desc.md");
|
|
46
|
+
expect(report.findings).toHaveLength(1);
|
|
47
|
+
expect(report.findings[0].kind).toBe("missing-description");
|
|
48
|
+
expect(report.findings[0].field).toBe("description");
|
|
49
|
+
expect(report.findings[0].message).toContain("/virtual/no-desc.md");
|
|
50
|
+
expect(report.findings[0].message).toContain("description");
|
|
51
|
+
});
|
|
52
|
+
test("flags missing when_to_use with the offending file path", () => {
|
|
53
|
+
const raw = ["---", "description: Lesson", "---", "Body."].join("\n");
|
|
54
|
+
const report = lintLessonContent(raw, "/virtual/no-when.md");
|
|
55
|
+
expect(report.findings).toHaveLength(1);
|
|
56
|
+
expect(report.findings[0].kind).toBe("missing-when_to_use");
|
|
57
|
+
expect(report.findings[0].field).toBe("when_to_use");
|
|
58
|
+
expect(report.findings[0].message).toContain("/virtual/no-when.md");
|
|
59
|
+
});
|
|
60
|
+
test("flags empty (whitespace-only) description and when_to_use", () => {
|
|
61
|
+
const raw = ["---", 'description: " "', 'when_to_use: ""', "---", ""].join("\n");
|
|
62
|
+
const report = lintLessonContent(raw, "/virtual/empty.md");
|
|
63
|
+
const kinds = report.findings.map((f) => f.kind).sort();
|
|
64
|
+
expect(kinds).toEqual(["empty-description", "empty-when_to_use"]);
|
|
65
|
+
});
|
|
66
|
+
test("flags both fields when both are missing", () => {
|
|
67
|
+
const raw = ["---", "tags: [a]", "---", "Body."].join("\n");
|
|
68
|
+
const report = lintLessonContent(raw, "/virtual/empty.md");
|
|
69
|
+
expect(report.findings).toHaveLength(2);
|
|
70
|
+
const kinds = new Set(report.findings.map((f) => f.kind));
|
|
71
|
+
expect(kinds.has("missing-description")).toBe(true);
|
|
72
|
+
expect(kinds.has("missing-when_to_use")).toBe(true);
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
describe("assertLessonValid + lintLessonFile (filesystem)", () => {
|
|
76
|
+
let tmpDir;
|
|
77
|
+
beforeAll(() => {
|
|
78
|
+
tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "akm-lesson-lint-"));
|
|
79
|
+
});
|
|
80
|
+
afterAll(() => {
|
|
81
|
+
fs.rmSync(tmpDir, { recursive: true, force: true });
|
|
82
|
+
});
|
|
83
|
+
test("lintLessonFile reads the file and reports findings", () => {
|
|
84
|
+
const file = path.join(tmpDir, "incomplete.md");
|
|
85
|
+
fs.writeFileSync(file, ["---", "description: hi", "---", "Body."].join("\n"));
|
|
86
|
+
const report = lintLessonFile(file);
|
|
87
|
+
expect(report.path).toBe(file);
|
|
88
|
+
expect(report.findings).toHaveLength(1);
|
|
89
|
+
expect(report.findings[0].kind).toBe("missing-when_to_use");
|
|
90
|
+
});
|
|
91
|
+
test("assertLessonValid throws UsageError including the offending path", () => {
|
|
92
|
+
const file = path.join(tmpDir, "bad.md");
|
|
93
|
+
fs.writeFileSync(file, ["---", "tags: [x]", "---", "Body."].join("\n"));
|
|
94
|
+
expect(() => assertLessonValid(file)).toThrow(UsageError);
|
|
95
|
+
try {
|
|
96
|
+
assertLessonValid(file);
|
|
97
|
+
}
|
|
98
|
+
catch (err) {
|
|
99
|
+
expect(err).toBeInstanceOf(UsageError);
|
|
100
|
+
const u = err;
|
|
101
|
+
expect(u.message).toContain(file);
|
|
102
|
+
expect(u.code).toBe("MISSING_REQUIRED_ARGUMENT");
|
|
103
|
+
expect(u.hint()).toMatch(/§13/);
|
|
104
|
+
}
|
|
105
|
+
});
|
|
106
|
+
test("assertLessonValid returns silently when the lesson is valid", () => {
|
|
107
|
+
const file = path.join(tmpDir, "good.md");
|
|
108
|
+
fs.writeFileSync(file, ["---", "description: Use the cache", "when_to_use: Rate-limited upstream", "---", "Body."].join("\n"));
|
|
109
|
+
expect(() => assertLessonValid(file)).not.toThrow();
|
|
110
|
+
});
|
|
111
|
+
});
|