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,533 @@
|
|
|
1
|
+
import { afterAll, afterEach, beforeEach, expect, test } from "bun:test";
|
|
2
|
+
import fs from "node:fs";
|
|
3
|
+
import os from "node:os";
|
|
4
|
+
import path from "node:path";
|
|
5
|
+
import { akmInit } from "../src/commands/init";
|
|
6
|
+
import { akmSearch } from "../src/commands/search";
|
|
7
|
+
import { akmShowUnified as akmShow } from "../src/commands/show";
|
|
8
|
+
import { getConfigPath, saveConfig } from "../src/core/config";
|
|
9
|
+
import { getBinDir } from "../src/core/paths";
|
|
10
|
+
import { akmIndex } from "../src/indexer/indexer";
|
|
11
|
+
const createdTmpDirs = [];
|
|
12
|
+
function createTmpDir(prefix = "akm-stash-") {
|
|
13
|
+
const dir = fs.mkdtempSync(path.join(os.tmpdir(), prefix));
|
|
14
|
+
createdTmpDirs.push(dir);
|
|
15
|
+
return dir;
|
|
16
|
+
}
|
|
17
|
+
function writeFile(filePath, content = "") {
|
|
18
|
+
fs.mkdirSync(path.dirname(filePath), { recursive: true });
|
|
19
|
+
fs.writeFileSync(filePath, content);
|
|
20
|
+
}
|
|
21
|
+
function isLocalHit(hit) {
|
|
22
|
+
return hit.type !== "registry";
|
|
23
|
+
}
|
|
24
|
+
afterAll(() => {
|
|
25
|
+
for (const dir of createdTmpDirs) {
|
|
26
|
+
fs.rmSync(dir, { recursive: true, force: true });
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
/** Place a dummy rg binary in stashDir/bin so ensureRg skips download */
|
|
30
|
+
function _stubRg(stashDir) {
|
|
31
|
+
const binDir = path.join(stashDir, "bin");
|
|
32
|
+
fs.mkdirSync(binDir, { recursive: true });
|
|
33
|
+
const rgPath = path.join(binDir, "rg");
|
|
34
|
+
fs.writeFileSync(rgPath, "#!/bin/sh\necho 'ripgrep 14.1.1'\n");
|
|
35
|
+
fs.chmodSync(rgPath, 0o755);
|
|
36
|
+
}
|
|
37
|
+
function stubCachedRg() {
|
|
38
|
+
const binDir = getBinDir();
|
|
39
|
+
fs.mkdirSync(binDir, { recursive: true });
|
|
40
|
+
const rgPath = path.join(binDir, "rg");
|
|
41
|
+
fs.writeFileSync(rgPath, "#!/bin/sh\necho 'ripgrep 14.1.1'\n");
|
|
42
|
+
fs.chmodSync(rgPath, 0o755);
|
|
43
|
+
}
|
|
44
|
+
// Isolate each test with its own cache directory so SQLite databases don't leak
|
|
45
|
+
const originalXdgCacheHome = process.env.XDG_CACHE_HOME;
|
|
46
|
+
const originalXdgConfigHome = process.env.XDG_CONFIG_HOME;
|
|
47
|
+
let testCacheDir = "";
|
|
48
|
+
let testConfigDir = "";
|
|
49
|
+
beforeEach(() => {
|
|
50
|
+
testCacheDir = createTmpDir("akm-stash-cache-");
|
|
51
|
+
testConfigDir = createTmpDir("akm-stash-config-");
|
|
52
|
+
process.env.XDG_CACHE_HOME = testCacheDir;
|
|
53
|
+
process.env.XDG_CONFIG_HOME = testConfigDir;
|
|
54
|
+
});
|
|
55
|
+
afterEach(() => {
|
|
56
|
+
if (originalXdgCacheHome === undefined) {
|
|
57
|
+
delete process.env.XDG_CACHE_HOME;
|
|
58
|
+
}
|
|
59
|
+
else {
|
|
60
|
+
process.env.XDG_CACHE_HOME = originalXdgCacheHome;
|
|
61
|
+
}
|
|
62
|
+
if (originalXdgConfigHome === undefined) {
|
|
63
|
+
delete process.env.XDG_CONFIG_HOME;
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
process.env.XDG_CONFIG_HOME = originalXdgConfigHome;
|
|
67
|
+
}
|
|
68
|
+
if (testCacheDir) {
|
|
69
|
+
fs.rmSync(testCacheDir, { recursive: true, force: true });
|
|
70
|
+
testCacheDir = "";
|
|
71
|
+
}
|
|
72
|
+
if (testConfigDir) {
|
|
73
|
+
fs.rmSync(testConfigDir, { recursive: true, force: true });
|
|
74
|
+
testConfigDir = "";
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
test("akmSearch only includes script files with supported extensions and returns run", async () => {
|
|
78
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
79
|
+
writeFile(path.join(stashDir, "scripts", "deploy.sh"), "#!/usr/bin/env bash\necho deploy\n");
|
|
80
|
+
writeFile(path.join(stashDir, "scripts", "script.ts"), "console.log('x')\n");
|
|
81
|
+
writeFile(path.join(stashDir, "scripts", "README.md"), "ignore\n");
|
|
82
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
83
|
+
const result = await akmSearch({ query: "", type: "script" });
|
|
84
|
+
const localHits = result.hits.filter(isLocalHit);
|
|
85
|
+
expect(localHits.length).toBe(2);
|
|
86
|
+
expect(localHits.every((hit) => hit.type === "script")).toBe(true);
|
|
87
|
+
expect(localHits.some((hit) => hit.name === "README.md")).toBe(false);
|
|
88
|
+
expect(localHits.some((hit) => typeof hit.run === "string")).toBe(true);
|
|
89
|
+
});
|
|
90
|
+
test("akmSearch creates bun run from nearest package.json up to scripts root", async () => {
|
|
91
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
92
|
+
const nestedScript = path.join(stashDir, "scripts", "group", "nested", "job.js");
|
|
93
|
+
writeFile(nestedScript, "console.log('job')\n");
|
|
94
|
+
writeFile(path.join(stashDir, "scripts", "group", "package.json"), '{"name":"group"}');
|
|
95
|
+
writeFile(path.join(stashDir, "scripts", "package.json"), '{"name":"root"}');
|
|
96
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
97
|
+
const result = await akmSearch({ query: "job", type: "script" });
|
|
98
|
+
const hit = result.hits.filter(isLocalHit)[0];
|
|
99
|
+
expect(result.hits.length).toBe(1);
|
|
100
|
+
expect(hit.run).toContain("bun");
|
|
101
|
+
expect(hit.run).toContain("job.js");
|
|
102
|
+
});
|
|
103
|
+
test("akmSearch detects setup from package.json in nearby directory", async () => {
|
|
104
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
105
|
+
const nestedScript = path.join(stashDir, "scripts", "group", "nested", "job.js");
|
|
106
|
+
writeFile(nestedScript, "console.log('job')\n");
|
|
107
|
+
writeFile(path.join(stashDir, "scripts", "group", "nested", "package.json"), '{"name":"group"}');
|
|
108
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
109
|
+
const result = await akmSearch({ query: "job", type: "script" });
|
|
110
|
+
const hit = result.hits.filter(isLocalHit)[0];
|
|
111
|
+
expect(result.hits.length).toBe(1);
|
|
112
|
+
// Search hits only expose run, not setup/cwd
|
|
113
|
+
expect(hit.run).toContain("bun");
|
|
114
|
+
expect(hit.run).toContain("job.js");
|
|
115
|
+
});
|
|
116
|
+
test("akmSearch resolves script run correctly for search path directories", async () => {
|
|
117
|
+
const primaryStashDir = createTmpDir("akm-stash-primary-");
|
|
118
|
+
const searchPathDir = createTmpDir("akm-stash-searchpath-");
|
|
119
|
+
writeFile(path.join(primaryStashDir, "scripts", "placeholder.sh"), "#!/usr/bin/env bash\necho primary\n");
|
|
120
|
+
writeFile(path.join(searchPathDir, "scripts", "group", "nested", "job.js"), "console.log('job')\n");
|
|
121
|
+
writeFile(path.join(searchPathDir, "scripts", "group", "package.json"), '{"name":"group"}');
|
|
122
|
+
saveConfig({ semanticSearchMode: "off", sources: [{ type: "filesystem", path: searchPathDir }] });
|
|
123
|
+
process.env.AKM_STASH_DIR = primaryStashDir;
|
|
124
|
+
await akmIndex({ stashDir: primaryStashDir, full: true });
|
|
125
|
+
const result = await akmSearch({ query: "job", type: "script" });
|
|
126
|
+
const searchPathHit = result.hits.filter(isLocalHit).find((hit) => hit.path.includes(searchPathDir));
|
|
127
|
+
expect(searchPathHit).toBeDefined();
|
|
128
|
+
expect(searchPathHit?.run ?? "").toContain("bun");
|
|
129
|
+
expect(searchPathHit?.run ?? "").toContain("job.js");
|
|
130
|
+
});
|
|
131
|
+
test("akmSearch includes explainability reasons for indexed hits", async () => {
|
|
132
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
133
|
+
writeFile(path.join(stashDir, "scripts", "summarize-diff.ts"), "console.log('summarize')\n");
|
|
134
|
+
saveConfig({ semanticSearchMode: "auto" });
|
|
135
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
136
|
+
await akmIndex({ stashDir, full: true });
|
|
137
|
+
const result = await akmSearch({ query: "summarize diff", type: "script" });
|
|
138
|
+
expect(result.hits.length).toBeGreaterThan(0);
|
|
139
|
+
expect(result.hits[0].whyMatched).toBeDefined();
|
|
140
|
+
// Ranking mode depends on whether semantic search (embeddings) is available.
|
|
141
|
+
// Accept "fts bm25 relevance", "semantic similarity", or "hybrid (fts + semantic)".
|
|
142
|
+
expect(result.hits[0].whyMatched?.includes("fts bm25 relevance") ||
|
|
143
|
+
result.hits[0].whyMatched?.includes("semantic similarity") ||
|
|
144
|
+
result.hits[0].whyMatched?.includes("hybrid (fts + semantic)")).toBe(true);
|
|
145
|
+
expect(result.hits[0].whyMatched).toContain("matched name tokens");
|
|
146
|
+
});
|
|
147
|
+
test("akmSearch includes ref, action, and size for local hits", async () => {
|
|
148
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
149
|
+
const scriptPath = path.join(stashDir, "scripts", "deploy.sh");
|
|
150
|
+
writeFile(scriptPath, "#!/usr/bin/env bash\necho deploy\n");
|
|
151
|
+
writeFile(path.join(stashDir, "scripts", ".stash.json"), JSON.stringify({
|
|
152
|
+
entries: [
|
|
153
|
+
{
|
|
154
|
+
name: "deploy",
|
|
155
|
+
type: "script",
|
|
156
|
+
description: "Deploy app",
|
|
157
|
+
filename: "deploy.sh",
|
|
158
|
+
},
|
|
159
|
+
],
|
|
160
|
+
}));
|
|
161
|
+
saveConfig({ semanticSearchMode: "off" });
|
|
162
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
163
|
+
await akmIndex({ stashDir, full: true });
|
|
164
|
+
const result = await akmSearch({ query: "deploy", type: "script" });
|
|
165
|
+
const hit = result.hits.filter(isLocalHit)[0];
|
|
166
|
+
expect(hit.ref).toContain("script:deploy.sh");
|
|
167
|
+
expect(hit.action).toContain("akm show");
|
|
168
|
+
expect(hit.size).toBe("small");
|
|
169
|
+
});
|
|
170
|
+
test("akmSearch includes origin for installed-source hits", async () => {
|
|
171
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
172
|
+
const installedStash = createTmpDir("akm-installed-");
|
|
173
|
+
writeFile(path.join(stashDir, "scripts", "placeholder.sh"), "#!/usr/bin/env bash\necho placeholder\n");
|
|
174
|
+
writeFile(path.join(installedStash, "scripts", "deploy.sh"), "#!/usr/bin/env bash\necho deploy\n");
|
|
175
|
+
saveConfig({
|
|
176
|
+
semanticSearchMode: "off",
|
|
177
|
+
installed: [
|
|
178
|
+
{
|
|
179
|
+
id: "npm:@scope/deploy-stash",
|
|
180
|
+
source: "npm",
|
|
181
|
+
ref: "@scope/deploy-stash",
|
|
182
|
+
artifactUrl: "https://example.com/deploy-stash.tgz",
|
|
183
|
+
stashRoot: installedStash,
|
|
184
|
+
cacheDir: installedStash,
|
|
185
|
+
installedAt: new Date().toISOString(),
|
|
186
|
+
},
|
|
187
|
+
],
|
|
188
|
+
});
|
|
189
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
190
|
+
await akmIndex({ stashDir, full: true });
|
|
191
|
+
const result = await akmSearch({ query: "deploy", type: "script" });
|
|
192
|
+
expect(result.hits.filter(isLocalHit).some((hit) => hit.origin === "npm:@scope/deploy-stash")).toBe(true);
|
|
193
|
+
});
|
|
194
|
+
test("akmShow returns full payloads for skill/command/agent", async () => {
|
|
195
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
196
|
+
writeFile(path.join(stashDir, "skills", "ops", "SKILL.md"), "# Ops\n");
|
|
197
|
+
writeFile(path.join(stashDir, "commands", "release.md"), '---\ndescription: "Release command"\n---\nrun release\n');
|
|
198
|
+
writeFile(path.join(stashDir, "agents", "coach.md"), '---\ndescription: "Coach"\nmodel: "gpt-5"\n---\nGuide users\n');
|
|
199
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
200
|
+
const skill = await akmShow({ ref: "skill:ops" });
|
|
201
|
+
const command = await akmShow({ ref: "command:release.md" });
|
|
202
|
+
const agent = await akmShow({ ref: "agent:coach.md" });
|
|
203
|
+
expect(skill.type).toBe("skill");
|
|
204
|
+
expect(skill.action).toContain("Read and follow");
|
|
205
|
+
expect(skill.content ?? "").toMatch(/Ops/);
|
|
206
|
+
expect(command.type).toBe("command");
|
|
207
|
+
expect(command.action).toContain("dispatch");
|
|
208
|
+
expect(command.template ?? "").toMatch(/run release/);
|
|
209
|
+
expect(command.description).toBe("Release command");
|
|
210
|
+
expect(agent.type).toBe("agent");
|
|
211
|
+
expect(agent.action).toContain("verbatim");
|
|
212
|
+
expect(agent.prompt ?? "").toMatch(/Guide users/);
|
|
213
|
+
expect(agent.modelHint).toBe("gpt-5");
|
|
214
|
+
});
|
|
215
|
+
test("akmShow returns clear error when stash type root is missing", async () => {
|
|
216
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
217
|
+
try {
|
|
218
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
219
|
+
// QA #27: error should not leak "Stash type root" wording; be user-facing
|
|
220
|
+
await expect(akmShow({ ref: "agent:missing.md" })).rejects.toThrow(/Asset not found for ref: agent:missing\.md|not found for ref/i);
|
|
221
|
+
}
|
|
222
|
+
finally {
|
|
223
|
+
fs.rmSync(stashDir, { recursive: true, force: true });
|
|
224
|
+
}
|
|
225
|
+
});
|
|
226
|
+
test("akmShow rejects invalid asset type in ref", async () => {
|
|
227
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
228
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
229
|
+
await expect(akmShow({ ref: "widget:foo" })).rejects.toThrow(/Invalid asset type/);
|
|
230
|
+
});
|
|
231
|
+
test("akmShow rejects traversal and absolute path refs", async () => {
|
|
232
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
233
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
234
|
+
await expect(akmShow({ ref: "script:../outside.sh" })).rejects.toThrow(/Path traversal/);
|
|
235
|
+
await expect(akmShow({ ref: "script:/etc/passwd" })).rejects.toThrow(/Absolute path/);
|
|
236
|
+
});
|
|
237
|
+
test("akmShow blocks symlink escapes outside stash type root", async () => {
|
|
238
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
239
|
+
const outsideDir = createTmpDir("akm-outside-");
|
|
240
|
+
const outsideFile = path.join(outsideDir, "outside.sh");
|
|
241
|
+
const symlinkFile = path.join(stashDir, "scripts", "link.sh");
|
|
242
|
+
writeFile(outsideFile, "echo outside\n");
|
|
243
|
+
fs.mkdirSync(path.join(stashDir, "scripts"), { recursive: true });
|
|
244
|
+
try {
|
|
245
|
+
fs.symlinkSync(outsideFile, symlinkFile);
|
|
246
|
+
}
|
|
247
|
+
catch {
|
|
248
|
+
// Symlinks not supported in this environment — skip
|
|
249
|
+
return;
|
|
250
|
+
}
|
|
251
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
252
|
+
await expect(akmShow({ ref: "script:link.sh" })).rejects.toThrow(/Ref resolves outside the stash root/);
|
|
253
|
+
});
|
|
254
|
+
// ── Knowledge tests ─────────────────────────────────────────────────────────
|
|
255
|
+
const KNOWLEDGE_DOC = `---
|
|
256
|
+
title: API Guide
|
|
257
|
+
description: "API documentation"
|
|
258
|
+
---
|
|
259
|
+
# Overview
|
|
260
|
+
|
|
261
|
+
This is the API guide.
|
|
262
|
+
|
|
263
|
+
## Authentication
|
|
264
|
+
|
|
265
|
+
Use bearer tokens.
|
|
266
|
+
|
|
267
|
+
## Endpoints
|
|
268
|
+
|
|
269
|
+
### GET /users
|
|
270
|
+
|
|
271
|
+
Returns all users.
|
|
272
|
+
|
|
273
|
+
### POST /users
|
|
274
|
+
|
|
275
|
+
Creates a user.
|
|
276
|
+
`;
|
|
277
|
+
test("akmSearch finds knowledge assets", async () => {
|
|
278
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
279
|
+
writeFile(path.join(stashDir, "knowledge", "api-guide.md"), KNOWLEDGE_DOC);
|
|
280
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
281
|
+
const result = await akmSearch({ query: "", type: "knowledge" });
|
|
282
|
+
expect(result.hits.length).toBe(1);
|
|
283
|
+
expect(result.hits[0].type).toBe("knowledge");
|
|
284
|
+
expect(result.hits[0].name).toBe("api-guide");
|
|
285
|
+
});
|
|
286
|
+
test("akmShow returns full content for knowledge by default", async () => {
|
|
287
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
288
|
+
writeFile(path.join(stashDir, "knowledge", "api-guide.md"), KNOWLEDGE_DOC);
|
|
289
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
290
|
+
const result = await akmShow({ ref: "knowledge:api-guide.md" });
|
|
291
|
+
expect(result.type).toBe("knowledge");
|
|
292
|
+
expect(result.content).toContain("# Overview");
|
|
293
|
+
expect(result.content).toContain("## Authentication");
|
|
294
|
+
});
|
|
295
|
+
test("akmShow returns TOC for knowledge with view toc", async () => {
|
|
296
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
297
|
+
writeFile(path.join(stashDir, "knowledge", "api-guide.md"), KNOWLEDGE_DOC);
|
|
298
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
299
|
+
const result = await akmShow({ ref: "knowledge:api-guide.md", view: { mode: "toc" } });
|
|
300
|
+
expect(result.type).toBe("knowledge");
|
|
301
|
+
expect(result.content).toContain("# Overview");
|
|
302
|
+
expect(result.content).toContain("## Authentication");
|
|
303
|
+
expect(result.content).toContain("## Endpoints");
|
|
304
|
+
expect(result.content).toContain("lines total");
|
|
305
|
+
});
|
|
306
|
+
test("akmShow extracts section for knowledge", async () => {
|
|
307
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
308
|
+
writeFile(path.join(stashDir, "knowledge", "api-guide.md"), KNOWLEDGE_DOC);
|
|
309
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
310
|
+
const result = await akmShow({
|
|
311
|
+
ref: "knowledge:api-guide.md",
|
|
312
|
+
view: { mode: "section", heading: "Authentication" },
|
|
313
|
+
});
|
|
314
|
+
expect(result.type).toBe("knowledge");
|
|
315
|
+
expect(result.content).toContain("bearer tokens");
|
|
316
|
+
expect(result.content).not.toContain("Endpoints");
|
|
317
|
+
});
|
|
318
|
+
test("akmShow extracts line range for knowledge", async () => {
|
|
319
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
320
|
+
writeFile(path.join(stashDir, "knowledge", "api-guide.md"), KNOWLEDGE_DOC);
|
|
321
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
322
|
+
const result = await akmShow({ ref: "knowledge:api-guide.md", view: { mode: "lines", start: 5, end: 7 } });
|
|
323
|
+
expect(result.type).toBe("knowledge");
|
|
324
|
+
expect(result.content).toContain("# Overview");
|
|
325
|
+
});
|
|
326
|
+
test("akmShow extracts frontmatter for knowledge", async () => {
|
|
327
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
328
|
+
writeFile(path.join(stashDir, "knowledge", "api-guide.md"), KNOWLEDGE_DOC);
|
|
329
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
330
|
+
const result = await akmShow({ ref: "knowledge:api-guide.md", view: { mode: "frontmatter" } });
|
|
331
|
+
expect(result.type).toBe("knowledge");
|
|
332
|
+
expect(result.content).toContain("title: API Guide");
|
|
333
|
+
expect(result.content).not.toContain("# Overview");
|
|
334
|
+
});
|
|
335
|
+
test("akmShow returns no-frontmatter message when missing", async () => {
|
|
336
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
337
|
+
writeFile(path.join(stashDir, "knowledge", "plain.md"), "# Just a heading\nSome text.\n");
|
|
338
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
339
|
+
const result = await akmShow({ ref: "knowledge:plain.md", view: { mode: "frontmatter" } });
|
|
340
|
+
expect(result.content).toBe("(no frontmatter)");
|
|
341
|
+
});
|
|
342
|
+
test("akmShow returns helpful message for missing section in knowledge", async () => {
|
|
343
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
344
|
+
writeFile(path.join(stashDir, "knowledge", "api-guide.md"), KNOWLEDGE_DOC);
|
|
345
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
346
|
+
const result = await akmShow({
|
|
347
|
+
ref: "knowledge:api-guide.md",
|
|
348
|
+
view: { mode: "section", heading: "Nonexistent" },
|
|
349
|
+
});
|
|
350
|
+
expect(result.type).toBe("knowledge");
|
|
351
|
+
expect(result.content).toContain('Section "Nonexistent" not found');
|
|
352
|
+
expect(result.content).toContain("akm show");
|
|
353
|
+
expect(result.content).toContain("toc");
|
|
354
|
+
expect(result.content).toContain("discover available headings");
|
|
355
|
+
});
|
|
356
|
+
test("akmShow for script type returns run", async () => {
|
|
357
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
358
|
+
writeFile(path.join(stashDir, "scripts", "deploy.sh"), "#!/usr/bin/env bash\necho deploy\n");
|
|
359
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
360
|
+
const result = await akmShow({ ref: "script:deploy.sh" });
|
|
361
|
+
expect(result.type).toBe("script");
|
|
362
|
+
expect(result.run).toBeTruthy();
|
|
363
|
+
expect(typeof result.run).toBe("string");
|
|
364
|
+
expect(result.run).toContain("bash");
|
|
365
|
+
});
|
|
366
|
+
test("akmInit returns created false when stash dir already exists", async () => {
|
|
367
|
+
const origHome = process.env.HOME;
|
|
368
|
+
const origStashDir = process.env.AKM_STASH_DIR;
|
|
369
|
+
const tmpHome = createTmpDir("akm-home-");
|
|
370
|
+
// Pre-create the akm directory at the new default location (~/akm)
|
|
371
|
+
const stashPath = path.join(tmpHome, "akm");
|
|
372
|
+
fs.mkdirSync(stashPath, { recursive: true });
|
|
373
|
+
process.env.HOME = tmpHome;
|
|
374
|
+
delete process.env.AKM_STASH_DIR;
|
|
375
|
+
try {
|
|
376
|
+
stubCachedRg();
|
|
377
|
+
const result = await akmInit();
|
|
378
|
+
expect(result.created).toBe(false);
|
|
379
|
+
expect(result.stashDir).toBe(stashPath);
|
|
380
|
+
}
|
|
381
|
+
finally {
|
|
382
|
+
if (origHome === undefined)
|
|
383
|
+
delete process.env.HOME;
|
|
384
|
+
else
|
|
385
|
+
process.env.HOME = origHome;
|
|
386
|
+
if (origStashDir === undefined)
|
|
387
|
+
delete process.env.AKM_STASH_DIR;
|
|
388
|
+
else
|
|
389
|
+
process.env.AKM_STASH_DIR = origStashDir;
|
|
390
|
+
fs.rmSync(tmpHome, { recursive: true, force: true });
|
|
391
|
+
}
|
|
392
|
+
});
|
|
393
|
+
test("akmShow throws unsupported script extension for .txt file", async () => {
|
|
394
|
+
const origStashDir = process.env.AKM_STASH_DIR;
|
|
395
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
396
|
+
writeFile(path.join(stashDir, "scripts", "readme.txt"), "not a script\n");
|
|
397
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
398
|
+
try {
|
|
399
|
+
await expect(akmShow({ ref: "script:readme.txt" })).rejects.toThrow(/Script ref must resolve to a file with a supported script extension/);
|
|
400
|
+
}
|
|
401
|
+
finally {
|
|
402
|
+
if (origStashDir === undefined)
|
|
403
|
+
delete process.env.AKM_STASH_DIR;
|
|
404
|
+
else
|
|
405
|
+
process.env.AKM_STASH_DIR = origStashDir;
|
|
406
|
+
fs.rmSync(stashDir, { recursive: true, force: true });
|
|
407
|
+
}
|
|
408
|
+
});
|
|
409
|
+
test("akmInit creates knowledge directory", async () => {
|
|
410
|
+
const origHome = process.env.HOME;
|
|
411
|
+
const origStashDir = process.env.AKM_STASH_DIR;
|
|
412
|
+
const tmpHome = createTmpDir("akm-home-");
|
|
413
|
+
process.env.HOME = tmpHome;
|
|
414
|
+
delete process.env.AKM_STASH_DIR;
|
|
415
|
+
try {
|
|
416
|
+
stubCachedRg();
|
|
417
|
+
const result = await akmInit();
|
|
418
|
+
expect(fs.existsSync(path.join(result.stashDir, "knowledge"))).toBe(true);
|
|
419
|
+
}
|
|
420
|
+
finally {
|
|
421
|
+
if (origHome === undefined)
|
|
422
|
+
delete process.env.HOME;
|
|
423
|
+
else
|
|
424
|
+
process.env.HOME = origHome;
|
|
425
|
+
if (origStashDir === undefined)
|
|
426
|
+
delete process.env.AKM_STASH_DIR;
|
|
427
|
+
else
|
|
428
|
+
process.env.AKM_STASH_DIR = origStashDir;
|
|
429
|
+
fs.rmSync(tmpHome, { recursive: true, force: true });
|
|
430
|
+
}
|
|
431
|
+
});
|
|
432
|
+
// ── Script tests ────────────────────────────────────────────────────────────
|
|
433
|
+
test("akmSearch finds script assets with broad extensions", async () => {
|
|
434
|
+
const origStashDir = process.env.AKM_STASH_DIR;
|
|
435
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
436
|
+
writeFile(path.join(stashDir, "scripts", "cleanup.sh"), "#!/usr/bin/env bash\necho cleanup\n");
|
|
437
|
+
writeFile(path.join(stashDir, "scripts", "process.py"), "print('hello')\n");
|
|
438
|
+
writeFile(path.join(stashDir, "scripts", "README.md"), "ignore\n");
|
|
439
|
+
try {
|
|
440
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
441
|
+
const result = await akmSearch({ query: "", type: "script" });
|
|
442
|
+
expect(result.hits.length).toBe(2);
|
|
443
|
+
expect(result.hits.every((hit) => hit.type === "script")).toBe(true);
|
|
444
|
+
expect(result.hits.some((hit) => hit.name === "README.md")).toBe(false);
|
|
445
|
+
}
|
|
446
|
+
finally {
|
|
447
|
+
if (origStashDir === undefined) {
|
|
448
|
+
delete process.env.AKM_STASH_DIR;
|
|
449
|
+
}
|
|
450
|
+
else {
|
|
451
|
+
process.env.AKM_STASH_DIR = origStashDir;
|
|
452
|
+
}
|
|
453
|
+
fs.rmSync(stashDir, { recursive: true, force: true });
|
|
454
|
+
}
|
|
455
|
+
});
|
|
456
|
+
test("akmSearch returns run for runnable script extensions", async () => {
|
|
457
|
+
const origStashDir = process.env.AKM_STASH_DIR;
|
|
458
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
459
|
+
writeFile(path.join(stashDir, "scripts", "deploy.sh"), "#!/usr/bin/env bash\necho deploy\n");
|
|
460
|
+
try {
|
|
461
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
462
|
+
const result = await akmSearch({ query: "", type: "script" });
|
|
463
|
+
const hit = result.hits.filter(isLocalHit)[0];
|
|
464
|
+
expect(result.hits.length).toBe(1);
|
|
465
|
+
expect(hit.run).toBeTruthy();
|
|
466
|
+
expect(hit.run).toContain("bash");
|
|
467
|
+
}
|
|
468
|
+
finally {
|
|
469
|
+
if (origStashDir === undefined) {
|
|
470
|
+
delete process.env.AKM_STASH_DIR;
|
|
471
|
+
}
|
|
472
|
+
else {
|
|
473
|
+
process.env.AKM_STASH_DIR = origStashDir;
|
|
474
|
+
}
|
|
475
|
+
fs.rmSync(stashDir, { recursive: true, force: true });
|
|
476
|
+
}
|
|
477
|
+
});
|
|
478
|
+
test("akmShow returns run for python script (auto-detected interpreter)", async () => {
|
|
479
|
+
const origStashDir = process.env.AKM_STASH_DIR;
|
|
480
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
481
|
+
writeFile(path.join(stashDir, "scripts", "process.py"), "# A python script\nprint('hello')\n");
|
|
482
|
+
try {
|
|
483
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
484
|
+
const result = await akmShow({ ref: "script:process.py" });
|
|
485
|
+
expect(result.type).toBe("script");
|
|
486
|
+
expect(result.run).toBeDefined();
|
|
487
|
+
expect(result.run).toContain("python");
|
|
488
|
+
}
|
|
489
|
+
finally {
|
|
490
|
+
if (origStashDir === undefined) {
|
|
491
|
+
delete process.env.AKM_STASH_DIR;
|
|
492
|
+
}
|
|
493
|
+
else {
|
|
494
|
+
process.env.AKM_STASH_DIR = origStashDir;
|
|
495
|
+
}
|
|
496
|
+
fs.rmSync(stashDir, { recursive: true, force: true });
|
|
497
|
+
}
|
|
498
|
+
});
|
|
499
|
+
test("akmShow returns run for runnable script", async () => {
|
|
500
|
+
const stashDir = createTmpDir("akm-stash-");
|
|
501
|
+
writeFile(path.join(stashDir, "scripts", "deploy.sh"), "#!/usr/bin/env bash\necho deploy\n");
|
|
502
|
+
process.env.AKM_STASH_DIR = stashDir;
|
|
503
|
+
const result = await akmShow({ ref: "script:deploy.sh" });
|
|
504
|
+
expect(result.type).toBe("script");
|
|
505
|
+
expect(result.run).toBeTruthy();
|
|
506
|
+
expect(result.run).toContain("bash");
|
|
507
|
+
});
|
|
508
|
+
test("akmInit writes config outside the stash directory", async () => {
|
|
509
|
+
const origHome = process.env.HOME;
|
|
510
|
+
const origStashDir = process.env.AKM_STASH_DIR;
|
|
511
|
+
const tmpHome = createTmpDir("akm-home-");
|
|
512
|
+
process.env.HOME = tmpHome;
|
|
513
|
+
delete process.env.AKM_STASH_DIR;
|
|
514
|
+
try {
|
|
515
|
+
stubCachedRg();
|
|
516
|
+
const result = await akmInit();
|
|
517
|
+
expect(result.configPath).toBe(getConfigPath());
|
|
518
|
+
expect(result.configPath.startsWith(result.stashDir)).toBe(false);
|
|
519
|
+
expect(fs.existsSync(result.configPath)).toBe(true);
|
|
520
|
+
expect(fs.existsSync(path.join(result.stashDir, "config.json"))).toBe(false);
|
|
521
|
+
}
|
|
522
|
+
finally {
|
|
523
|
+
if (origHome === undefined)
|
|
524
|
+
delete process.env.HOME;
|
|
525
|
+
else
|
|
526
|
+
process.env.HOME = origHome;
|
|
527
|
+
if (origStashDir === undefined)
|
|
528
|
+
delete process.env.AKM_STASH_DIR;
|
|
529
|
+
else
|
|
530
|
+
process.env.AKM_STASH_DIR = origStashDir;
|
|
531
|
+
fs.rmSync(tmpHome, { recursive: true, force: true });
|
|
532
|
+
}
|
|
533
|
+
});
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { afterEach, describe, expect, test } from "bun:test";
|
|
2
|
+
import fs from "node:fs";
|
|
3
|
+
import os from "node:os";
|
|
4
|
+
import path from "node:path";
|
|
5
|
+
import { extractTarGzSecure } from "../src/sources/providers/tar-utils";
|
|
6
|
+
/**
|
|
7
|
+
* Regression tests for the post-extraction scanner in `tar-utils.ts`.
|
|
8
|
+
*
|
|
9
|
+
* PR #168 review flagged that the previous `entry.name.includes("..")`
|
|
10
|
+
* check rejected legitimate filenames like `archive..2024.tar` or
|
|
11
|
+
* `foo..bar.md`. The scanner now only rejects exact "." / ".." segments
|
|
12
|
+
* and instead enforces containment via `isWithin`.
|
|
13
|
+
*
|
|
14
|
+
* These tests construct real tarballs in a temp directory and run them
|
|
15
|
+
* through the actual extraction path so the post-scan logic is exercised
|
|
16
|
+
* end-to-end.
|
|
17
|
+
*/
|
|
18
|
+
const tmpDirs = [];
|
|
19
|
+
function tmpDir(prefix = "akm-tar-scan-") {
|
|
20
|
+
const dir = fs.mkdtempSync(path.join(os.tmpdir(), prefix));
|
|
21
|
+
tmpDirs.push(dir);
|
|
22
|
+
return dir;
|
|
23
|
+
}
|
|
24
|
+
afterEach(() => {
|
|
25
|
+
for (const dir of tmpDirs.splice(0)) {
|
|
26
|
+
fs.rmSync(dir, { recursive: true, force: true });
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
/**
|
|
30
|
+
* Build a tarball where the inner directory wraps two files. Returns the
|
|
31
|
+
* tarball path and the destination dir for `extractTarGzSecure`.
|
|
32
|
+
*/
|
|
33
|
+
function buildTarball(rootName, entries) {
|
|
34
|
+
const work = tmpDir("akm-tar-build-");
|
|
35
|
+
const root = path.join(work, rootName);
|
|
36
|
+
fs.mkdirSync(root, { recursive: true });
|
|
37
|
+
for (const entry of entries) {
|
|
38
|
+
const file = path.join(root, entry.name);
|
|
39
|
+
fs.mkdirSync(path.dirname(file), { recursive: true });
|
|
40
|
+
fs.writeFileSync(file, entry.body, "utf8");
|
|
41
|
+
}
|
|
42
|
+
const tarPath = path.join(work, `${rootName}.tar.gz`);
|
|
43
|
+
// Use system tar — present on macOS, Linux. The scanner is what we care
|
|
44
|
+
// about; building the archive itself is incidental.
|
|
45
|
+
const proc = Bun.spawnSync(["tar", "-czf", tarPath, "-C", work, rootName]);
|
|
46
|
+
if (proc.exitCode !== 0) {
|
|
47
|
+
throw new Error(`tar build failed: ${new TextDecoder().decode(proc.stderr)}`);
|
|
48
|
+
}
|
|
49
|
+
return tarPath;
|
|
50
|
+
}
|
|
51
|
+
describe("scanExtractedFiles — filename .. substring guard (PR #168 review #8)", () => {
|
|
52
|
+
test("accepts filenames containing `..` substrings (no false positive)", () => {
|
|
53
|
+
const tarPath = buildTarball("pkg", [
|
|
54
|
+
{ name: "archive..2024.tar", body: "tar body bytes" },
|
|
55
|
+
{ name: "notes/foo..bar.md", body: "# notes" },
|
|
56
|
+
]);
|
|
57
|
+
const dest = tmpDir("akm-tar-extract-");
|
|
58
|
+
// Should NOT throw — these names previously failed the substring check.
|
|
59
|
+
expect(() => extractTarGzSecure(tarPath, dest)).not.toThrow();
|
|
60
|
+
expect(fs.existsSync(path.join(dest, "archive..2024.tar"))).toBe(true);
|
|
61
|
+
expect(fs.existsSync(path.join(dest, "notes/foo..bar.md"))).toBe(true);
|
|
62
|
+
});
|
|
63
|
+
test("accepts ordinary filenames", () => {
|
|
64
|
+
const tarPath = buildTarball("pkg", [
|
|
65
|
+
{ name: "README.md", body: "# README" },
|
|
66
|
+
{ name: "src/main.ts", body: "export const x = 1;" },
|
|
67
|
+
]);
|
|
68
|
+
const dest = tmpDir("akm-tar-extract-ok-");
|
|
69
|
+
expect(() => extractTarGzSecure(tarPath, dest)).not.toThrow();
|
|
70
|
+
expect(fs.existsSync(path.join(dest, "README.md"))).toBe(true);
|
|
71
|
+
expect(fs.existsSync(path.join(dest, "src/main.ts"))).toBe(true);
|
|
72
|
+
});
|
|
73
|
+
});
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { afterEach, describe, expect, test } from "bun:test";
|
|
2
|
+
import { spawnSync } from "node:child_process";
|
|
3
|
+
import fs from "node:fs";
|
|
4
|
+
import os from "node:os";
|
|
5
|
+
import path from "node:path";
|
|
6
|
+
const CLI = path.join(__dirname, "..", "src", "cli.ts");
|
|
7
|
+
const tempDirs = [];
|
|
8
|
+
function makeTempDir(prefix) {
|
|
9
|
+
const dir = fs.mkdtempSync(path.join(os.tmpdir(), prefix));
|
|
10
|
+
tempDirs.push(dir);
|
|
11
|
+
return dir;
|
|
12
|
+
}
|
|
13
|
+
afterEach(() => {
|
|
14
|
+
for (const dir of tempDirs.splice(0)) {
|
|
15
|
+
fs.rmSync(dir, { recursive: true, force: true });
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
function runCli(args, env) {
|
|
19
|
+
const result = spawnSync("bun", [CLI, ...args], {
|
|
20
|
+
encoding: "utf8",
|
|
21
|
+
timeout: 30_000,
|
|
22
|
+
env,
|
|
23
|
+
});
|
|
24
|
+
return { status: result.status, stdout: result.stdout ?? "", stderr: result.stderr ?? "" };
|
|
25
|
+
}
|
|
26
|
+
describe("component toggles", () => {
|
|
27
|
+
test("akm disable skills.sh marks skills.sh registry as disabled", () => {
|
|
28
|
+
const xdgConfig = makeTempDir("akm-toggle-config-");
|
|
29
|
+
const xdgCache = makeTempDir("akm-toggle-cache-");
|
|
30
|
+
const stashDir = makeTempDir("akm-toggle-stash-");
|
|
31
|
+
const result = runCli(["disable", "skills.sh", "--format=json"], {
|
|
32
|
+
...process.env,
|
|
33
|
+
XDG_CONFIG_HOME: xdgConfig,
|
|
34
|
+
XDG_CACHE_HOME: xdgCache,
|
|
35
|
+
AKM_STASH_DIR: stashDir,
|
|
36
|
+
});
|
|
37
|
+
expect(result.status).toBe(0);
|
|
38
|
+
expect(JSON.parse(result.stdout).enabled).toBe(false);
|
|
39
|
+
const configPath = path.join(xdgConfig, "akm", "config.json");
|
|
40
|
+
const config = JSON.parse(fs.readFileSync(configPath, "utf8"));
|
|
41
|
+
const skillsRegistry = config.registries?.find((entry) => entry.name === "skills.sh" || entry.provider === "skills-sh");
|
|
42
|
+
expect(skillsRegistry).toBeDefined();
|
|
43
|
+
expect(skillsRegistry?.enabled).toBe(false);
|
|
44
|
+
});
|
|
45
|
+
test("akm enable <unsupported-target> exits with usage error", () => {
|
|
46
|
+
const xdgConfig = makeTempDir("akm-toggle-config-");
|
|
47
|
+
const xdgCache = makeTempDir("akm-toggle-cache-");
|
|
48
|
+
const stashDir = makeTempDir("akm-toggle-stash-");
|
|
49
|
+
const result = runCli(["enable", "context-hub", "--format=json"], {
|
|
50
|
+
...process.env,
|
|
51
|
+
XDG_CONFIG_HOME: xdgConfig,
|
|
52
|
+
XDG_CACHE_HOME: xdgCache,
|
|
53
|
+
AKM_STASH_DIR: stashDir,
|
|
54
|
+
});
|
|
55
|
+
expect(result.status).not.toBe(0);
|
|
56
|
+
const combined = `${result.stdout}\n${result.stderr}`;
|
|
57
|
+
expect(combined).toContain("Unsupported target");
|
|
58
|
+
});
|
|
59
|
+
test("akm disable <unsupported-target> exits with usage error", () => {
|
|
60
|
+
const xdgConfig = makeTempDir("akm-toggle-config-");
|
|
61
|
+
const xdgCache = makeTempDir("akm-toggle-cache-");
|
|
62
|
+
const stashDir = makeTempDir("akm-toggle-stash-");
|
|
63
|
+
const result = runCli(["disable", "context-hub", "--format=json"], {
|
|
64
|
+
...process.env,
|
|
65
|
+
XDG_CONFIG_HOME: xdgConfig,
|
|
66
|
+
XDG_CACHE_HOME: xdgCache,
|
|
67
|
+
AKM_STASH_DIR: stashDir,
|
|
68
|
+
});
|
|
69
|
+
expect(result.status).not.toBe(0);
|
|
70
|
+
const combined = `${result.stdout}\n${result.stderr}`;
|
|
71
|
+
expect(combined).toContain("Unsupported target");
|
|
72
|
+
});
|
|
73
|
+
});
|