cognitive-core 0.2.0 → 0.2.2
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/.claude/settings.json +111 -2
- package/.sessionlog/settings.json +4 -0
- package/dist/atlas.d.ts +10 -0
- package/dist/atlas.d.ts.map +1 -1
- package/dist/atlas.js +65 -0
- package/dist/atlas.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/learning/index.d.ts +1 -1
- package/dist/learning/index.d.ts.map +1 -1
- package/dist/learning/index.js.map +1 -1
- package/dist/learning/pipeline.d.ts +4 -31
- package/dist/learning/pipeline.d.ts.map +1 -1
- package/dist/learning/pipeline.js +12 -64
- package/dist/learning/pipeline.js.map +1 -1
- package/dist/learning/unified-pipeline.d.ts +30 -0
- package/dist/learning/unified-pipeline.d.ts.map +1 -1
- package/dist/learning/unified-pipeline.js +207 -0
- package/dist/learning/unified-pipeline.js.map +1 -1
- package/dist/memory/candidate-retrieval.d.ts.map +1 -1
- package/dist/memory/candidate-retrieval.js +3 -1
- package/dist/memory/candidate-retrieval.js.map +1 -1
- package/dist/memory/curated-loader.d.ts +21 -4
- package/dist/memory/curated-loader.d.ts.map +1 -1
- package/dist/memory/curated-loader.js +53 -16
- package/dist/memory/curated-loader.js.map +1 -1
- package/dist/memory/index.d.ts +2 -1
- package/dist/memory/index.d.ts.map +1 -1
- package/dist/memory/index.js +3 -1
- package/dist/memory/index.js.map +1 -1
- package/dist/memory/playbook.d.ts +6 -0
- package/dist/memory/playbook.d.ts.map +1 -1
- package/dist/memory/playbook.js +15 -0
- package/dist/memory/playbook.js.map +1 -1
- package/dist/memory/source-resolver.d.ts +120 -0
- package/dist/memory/source-resolver.d.ts.map +1 -0
- package/dist/memory/source-resolver.js +300 -0
- package/dist/memory/source-resolver.js.map +1 -0
- package/dist/types/config.d.ts +141 -0
- package/dist/types/config.d.ts.map +1 -1
- package/dist/types/config.js +40 -0
- package/dist/types/config.js.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +1 -1
- package/dist/types/index.js.map +1 -1
- package/dist/utils/error-classifier.js +8 -8
- package/dist/utils/error-classifier.js.map +1 -1
- package/dist/workspace/efficacy-toolkit.d.ts +164 -0
- package/dist/workspace/efficacy-toolkit.d.ts.map +1 -0
- package/dist/workspace/efficacy-toolkit.js +281 -0
- package/dist/workspace/efficacy-toolkit.js.map +1 -0
- package/dist/workspace/index.d.ts +2 -1
- package/dist/workspace/index.d.ts.map +1 -1
- package/dist/workspace/index.js +3 -1
- package/dist/workspace/index.js.map +1 -1
- package/dist/workspace/templates/index.d.ts +3 -0
- package/dist/workspace/templates/index.d.ts.map +1 -1
- package/dist/workspace/templates/index.js +6 -0
- package/dist/workspace/templates/index.js.map +1 -1
- package/dist/workspace/templates/playbook-decay-detection.d.ts +46 -0
- package/dist/workspace/templates/playbook-decay-detection.d.ts.map +1 -0
- package/dist/workspace/templates/playbook-decay-detection.js +197 -0
- package/dist/workspace/templates/playbook-decay-detection.js.map +1 -0
- package/dist/workspace/templates/playbook-efficacy-audit.d.ts +46 -0
- package/dist/workspace/templates/playbook-efficacy-audit.d.ts.map +1 -0
- package/dist/workspace/templates/playbook-efficacy-audit.js +160 -0
- package/dist/workspace/templates/playbook-efficacy-audit.js.map +1 -0
- package/dist/workspace/templates/playbook-lifecycle-review.d.ts +51 -0
- package/dist/workspace/templates/playbook-lifecycle-review.d.ts.map +1 -0
- package/dist/workspace/templates/playbook-lifecycle-review.js +187 -0
- package/dist/workspace/templates/playbook-lifecycle-review.js.map +1 -0
- package/dist/workspace/types.d.ts +12 -54
- package/dist/workspace/types.d.ts.map +1 -1
- package/dist/workspace/types.js.map +1 -1
- package/package.json +8 -2
- package/playbooks/compound-engineering/adversarial-review.json +51 -0
- package/playbooks/compound-engineering/agent-native-architecture.json +59 -0
- package/playbooks/compound-engineering/agent-native-review.json +54 -0
- package/playbooks/compound-engineering/api-contract-review.json +52 -0
- package/playbooks/compound-engineering/brainstorm-requirements.json +55 -0
- package/playbooks/compound-engineering/bug-reproduction.json +62 -0
- package/playbooks/compound-engineering/confidence-calibration.json +49 -0
- package/playbooks/compound-engineering/correctness-review.json +49 -0
- package/playbooks/compound-engineering/data-migration-safety.json +59 -0
- package/playbooks/compound-engineering/deployment-verification.json +63 -0
- package/playbooks/compound-engineering/error-recovery-patterns.json +53 -0
- package/playbooks/compound-engineering/implementation-planning.json +64 -0
- package/playbooks/compound-engineering/issue-pattern-analysis.json +53 -0
- package/playbooks/compound-engineering/knowledge-compounding.json +63 -0
- package/playbooks/compound-engineering/learnings-research.json +54 -0
- package/playbooks/compound-engineering/maintainability-review.json +49 -0
- package/playbooks/compound-engineering/performance-review.json +54 -0
- package/playbooks/compound-engineering/plan-adversarial-review.json +56 -0
- package/playbooks/compound-engineering/plan-feasibility-review.json +56 -0
- package/playbooks/compound-engineering/project-standards-review.json +52 -0
- package/playbooks/compound-engineering/reliability-review.json +53 -0
- package/playbooks/compound-engineering/review-orchestration.json +64 -0
- package/playbooks/compound-engineering/security-review.json +54 -0
- package/playbooks/compound-engineering/systematic-execution.json +64 -0
- package/playbooks/compound-engineering/testing-review.json +50 -0
- package/src/atlas.ts +96 -0
- package/src/index.ts +27 -0
- package/src/learning/index.ts +1 -0
- package/src/learning/unified-pipeline.ts +271 -1
- package/src/memory/candidate-retrieval.ts +2 -1
- package/src/memory/curated-loader.ts +69 -16
- package/src/memory/index.ts +16 -0
- package/src/memory/playbook.ts +19 -0
- package/src/memory/source-resolver.ts +422 -0
- package/src/types/config.ts +46 -0
- package/src/types/index.ts +4 -0
- package/src/utils/error-classifier.ts +8 -8
- package/src/workspace/efficacy-toolkit.ts +496 -0
- package/src/workspace/index.ts +29 -0
- package/src/workspace/templates/index.ts +24 -0
- package/src/workspace/templates/playbook-decay-detection.ts +272 -0
- package/src/workspace/templates/playbook-efficacy-audit.ts +246 -0
- package/src/workspace/templates/playbook-lifecycle-review.ts +274 -0
- package/src/workspace/types.ts +22 -78
- package/tests/fixtures/behavioral-trajectories.ts +210 -0
- package/tests/integration/curated-sources-e2e.test.ts +502 -0
- package/tests/integration/pipeline-data-correctness.test.ts +794 -0
- package/tests/learning/meta-learner.test.ts +418 -0
- package/tests/learning/pipeline-memory-updates.test.ts +721 -0
- package/tests/learning/unified-pipeline-efficacy.test.ts +232 -0
- package/tests/memory/candidate-retrieval.test.ts +167 -0
- package/tests/memory/compound-engineering-seed.test.ts +338 -0
- package/tests/memory/curated-loader-extended.test.ts +225 -0
- package/tests/memory/meta.test.ts +399 -0
- package/tests/memory/playbook-quality-validation.test.ts +430 -0
- package/tests/memory/source-resolver.test.ts +700 -0
- package/tests/search/evaluator.test.ts +257 -0
- package/tests/search/verification-runner.test.ts +357 -0
- package/tests/utils/error-classifier.test.ts +149 -0
- package/tests/utils/trajectory-helpers.test.ts +163 -0
- package/tests/workspace/efficacy-toolkit.test.ts +404 -0
- package/tests/workspace/templates/playbook-efficacy.test.ts +377 -0
- package/.claude/settings.local.json +0 -11
- package/dist/learning/llm-extractor.d.ts +0 -88
- package/dist/learning/llm-extractor.d.ts.map +0 -1
- package/dist/learning/llm-extractor.js +0 -372
- package/dist/learning/llm-extractor.js.map +0 -1
- package/dist/learning/loop-coordinator.d.ts +0 -61
- package/dist/learning/loop-coordinator.d.ts.map +0 -1
- package/dist/learning/loop-coordinator.js +0 -96
- package/dist/learning/loop-coordinator.js.map +0 -1
- package/references/agent-workspace/CLAUDE.md +0 -74
- package/references/agent-workspace/README.md +0 -587
- package/references/agent-workspace/media/banner.png +0 -0
- package/references/agent-workspace/package-lock.json +0 -2061
- package/references/agent-workspace/package.json +0 -54
- package/references/agent-workspace/src/handle.ts +0 -122
- package/references/agent-workspace/src/index.ts +0 -32
- package/references/agent-workspace/src/manager.ts +0 -102
- package/references/agent-workspace/src/readers/json.ts +0 -71
- package/references/agent-workspace/src/readers/markdown.ts +0 -37
- package/references/agent-workspace/src/readers/raw.ts +0 -27
- package/references/agent-workspace/src/types.ts +0 -68
- package/references/agent-workspace/src/validation.ts +0 -93
- package/references/agent-workspace/src/writers/json.ts +0 -17
- package/references/agent-workspace/src/writers/markdown.ts +0 -27
- package/references/agent-workspace/src/writers/raw.ts +0 -22
- package/references/agent-workspace/tests/errors.test.ts +0 -652
- package/references/agent-workspace/tests/handle.test.ts +0 -144
- package/references/agent-workspace/tests/manager.test.ts +0 -124
- package/references/agent-workspace/tests/readers.test.ts +0 -205
- package/references/agent-workspace/tests/validation.test.ts +0 -196
- package/references/agent-workspace/tests/writers.test.ts +0 -108
- package/references/agent-workspace/tsconfig.json +0 -20
- package/references/agent-workspace/tsup.config.ts +0 -9
- package/references/minimem/.claude/settings.json +0 -7
- package/references/minimem/.sudocode/issues.jsonl +0 -18
- package/references/minimem/.sudocode/specs.jsonl +0 -1
- package/references/minimem/CLAUDE.md +0 -310
- package/references/minimem/README.md +0 -556
- package/references/minimem/claude-plugin/.claude-plugin/plugin.json +0 -10
- package/references/minimem/claude-plugin/.mcp.json +0 -7
- package/references/minimem/claude-plugin/README.md +0 -158
- package/references/minimem/claude-plugin/commands/recall.md +0 -47
- package/references/minimem/claude-plugin/commands/remember.md +0 -41
- package/references/minimem/claude-plugin/hooks/__tests__/hooks.test.ts +0 -272
- package/references/minimem/claude-plugin/hooks/hooks.json +0 -27
- package/references/minimem/claude-plugin/hooks/session-end.sh +0 -86
- package/references/minimem/claude-plugin/hooks/session-start.sh +0 -85
- package/references/minimem/claude-plugin/skills/memory/SKILL.md +0 -108
- package/references/minimem/package-lock.json +0 -5373
- package/references/minimem/package.json +0 -60
- package/references/minimem/scripts/postbuild.js +0 -35
- package/references/minimem/src/__tests__/edge-cases.test.ts +0 -371
- package/references/minimem/src/__tests__/errors.test.ts +0 -265
- package/references/minimem/src/__tests__/helpers.ts +0 -199
- package/references/minimem/src/__tests__/internal.test.ts +0 -407
- package/references/minimem/src/__tests__/knowledge.test.ts +0 -287
- package/references/minimem/src/__tests__/minimem.integration.test.ts +0 -1127
- package/references/minimem/src/__tests__/session.test.ts +0 -190
- package/references/minimem/src/cli/__tests__/commands.test.ts +0 -759
- package/references/minimem/src/cli/commands/__tests__/conflicts.test.ts +0 -141
- package/references/minimem/src/cli/commands/append.ts +0 -76
- package/references/minimem/src/cli/commands/config.ts +0 -262
- package/references/minimem/src/cli/commands/conflicts.ts +0 -413
- package/references/minimem/src/cli/commands/daemon.ts +0 -169
- package/references/minimem/src/cli/commands/index.ts +0 -12
- package/references/minimem/src/cli/commands/init.ts +0 -88
- package/references/minimem/src/cli/commands/mcp.ts +0 -177
- package/references/minimem/src/cli/commands/push-pull.ts +0 -213
- package/references/minimem/src/cli/commands/search.ts +0 -158
- package/references/minimem/src/cli/commands/status.ts +0 -84
- package/references/minimem/src/cli/commands/sync-init.ts +0 -290
- package/references/minimem/src/cli/commands/sync.ts +0 -70
- package/references/minimem/src/cli/commands/upsert.ts +0 -197
- package/references/minimem/src/cli/config.ts +0 -584
- package/references/minimem/src/cli/index.ts +0 -264
- package/references/minimem/src/cli/shared.ts +0 -161
- package/references/minimem/src/cli/sync/__tests__/central.test.ts +0 -152
- package/references/minimem/src/cli/sync/__tests__/conflicts.test.ts +0 -209
- package/references/minimem/src/cli/sync/__tests__/daemon.test.ts +0 -118
- package/references/minimem/src/cli/sync/__tests__/detection.test.ts +0 -207
- package/references/minimem/src/cli/sync/__tests__/integration.test.ts +0 -476
- package/references/minimem/src/cli/sync/__tests__/registry.test.ts +0 -363
- package/references/minimem/src/cli/sync/__tests__/state.test.ts +0 -255
- package/references/minimem/src/cli/sync/__tests__/validation.test.ts +0 -193
- package/references/minimem/src/cli/sync/__tests__/watcher.test.ts +0 -178
- package/references/minimem/src/cli/sync/central.ts +0 -292
- package/references/minimem/src/cli/sync/conflicts.ts +0 -204
- package/references/minimem/src/cli/sync/daemon.ts +0 -407
- package/references/minimem/src/cli/sync/detection.ts +0 -138
- package/references/minimem/src/cli/sync/index.ts +0 -107
- package/references/minimem/src/cli/sync/operations.ts +0 -373
- package/references/minimem/src/cli/sync/registry.ts +0 -279
- package/references/minimem/src/cli/sync/state.ts +0 -355
- package/references/minimem/src/cli/sync/validation.ts +0 -206
- package/references/minimem/src/cli/sync/watcher.ts +0 -234
- package/references/minimem/src/cli/version.ts +0 -34
- package/references/minimem/src/core/index.ts +0 -9
- package/references/minimem/src/core/indexer.ts +0 -628
- package/references/minimem/src/core/searcher.ts +0 -221
- package/references/minimem/src/db/schema.ts +0 -183
- package/references/minimem/src/db/sqlite-vec.ts +0 -24
- package/references/minimem/src/embeddings/__tests__/embeddings.test.ts +0 -431
- package/references/minimem/src/embeddings/batch-gemini.ts +0 -392
- package/references/minimem/src/embeddings/batch-openai.ts +0 -409
- package/references/minimem/src/embeddings/embeddings.ts +0 -434
- package/references/minimem/src/index.ts +0 -109
- package/references/minimem/src/internal.ts +0 -299
- package/references/minimem/src/minimem.ts +0 -1276
- package/references/minimem/src/search/__tests__/hybrid.test.ts +0 -247
- package/references/minimem/src/search/graph.ts +0 -234
- package/references/minimem/src/search/hybrid.ts +0 -151
- package/references/minimem/src/search/search.ts +0 -256
- package/references/minimem/src/server/__tests__/mcp.test.ts +0 -341
- package/references/minimem/src/server/__tests__/tools.test.ts +0 -364
- package/references/minimem/src/server/mcp.ts +0 -326
- package/references/minimem/src/server/tools.ts +0 -720
- package/references/minimem/src/session.ts +0 -460
- package/references/minimem/tsconfig.json +0 -19
- package/references/minimem/tsup.config.ts +0 -26
- package/references/minimem/vitest.config.ts +0 -24
- package/references/sessionlog/.husky/pre-commit +0 -1
- package/references/sessionlog/.lintstagedrc.json +0 -4
- package/references/sessionlog/.prettierignore +0 -4
- package/references/sessionlog/.prettierrc.json +0 -11
- package/references/sessionlog/LICENSE +0 -21
- package/references/sessionlog/README.md +0 -453
- package/references/sessionlog/eslint.config.js +0 -58
- package/references/sessionlog/package-lock.json +0 -3672
- package/references/sessionlog/package.json +0 -65
- package/references/sessionlog/src/__tests__/agent-hooks.test.ts +0 -570
- package/references/sessionlog/src/__tests__/agent-registry.test.ts +0 -127
- package/references/sessionlog/src/__tests__/claude-code-hooks.test.ts +0 -225
- package/references/sessionlog/src/__tests__/claude-generator.test.ts +0 -46
- package/references/sessionlog/src/__tests__/commit-msg.test.ts +0 -86
- package/references/sessionlog/src/__tests__/cursor-agent.test.ts +0 -224
- package/references/sessionlog/src/__tests__/e2e-live.test.ts +0 -890
- package/references/sessionlog/src/__tests__/event-log.test.ts +0 -183
- package/references/sessionlog/src/__tests__/flush-sentinel.test.ts +0 -105
- package/references/sessionlog/src/__tests__/gemini-agent.test.ts +0 -375
- package/references/sessionlog/src/__tests__/git-hooks.test.ts +0 -78
- package/references/sessionlog/src/__tests__/hook-managers.test.ts +0 -121
- package/references/sessionlog/src/__tests__/lifecycle-tasks.test.ts +0 -759
- package/references/sessionlog/src/__tests__/opencode-agent.test.ts +0 -338
- package/references/sessionlog/src/__tests__/redaction.test.ts +0 -136
- package/references/sessionlog/src/__tests__/session-repo.test.ts +0 -353
- package/references/sessionlog/src/__tests__/session-store.test.ts +0 -166
- package/references/sessionlog/src/__tests__/setup-ccweb.test.ts +0 -466
- package/references/sessionlog/src/__tests__/skill-live.test.ts +0 -461
- package/references/sessionlog/src/__tests__/summarize.test.ts +0 -348
- package/references/sessionlog/src/__tests__/task-plan-e2e.test.ts +0 -610
- package/references/sessionlog/src/__tests__/task-plan-live.test.ts +0 -632
- package/references/sessionlog/src/__tests__/transcript-timestamp.test.ts +0 -121
- package/references/sessionlog/src/__tests__/types.test.ts +0 -166
- package/references/sessionlog/src/__tests__/utils.test.ts +0 -333
- package/references/sessionlog/src/__tests__/validation.test.ts +0 -103
- package/references/sessionlog/src/__tests__/worktree.test.ts +0 -57
- package/references/sessionlog/src/agent/agents/claude-code.ts +0 -1089
- package/references/sessionlog/src/agent/agents/cursor.ts +0 -361
- package/references/sessionlog/src/agent/agents/gemini-cli.ts +0 -632
- package/references/sessionlog/src/agent/agents/opencode.ts +0 -540
- package/references/sessionlog/src/agent/registry.ts +0 -143
- package/references/sessionlog/src/agent/session-types.ts +0 -113
- package/references/sessionlog/src/agent/types.ts +0 -220
- package/references/sessionlog/src/cli.ts +0 -597
- package/references/sessionlog/src/commands/clean.ts +0 -133
- package/references/sessionlog/src/commands/disable.ts +0 -84
- package/references/sessionlog/src/commands/doctor.ts +0 -145
- package/references/sessionlog/src/commands/enable.ts +0 -202
- package/references/sessionlog/src/commands/explain.ts +0 -261
- package/references/sessionlog/src/commands/reset.ts +0 -105
- package/references/sessionlog/src/commands/resume.ts +0 -180
- package/references/sessionlog/src/commands/rewind.ts +0 -195
- package/references/sessionlog/src/commands/setup-ccweb.ts +0 -275
- package/references/sessionlog/src/commands/status.ts +0 -172
- package/references/sessionlog/src/config.ts +0 -165
- package/references/sessionlog/src/events/event-log.ts +0 -126
- package/references/sessionlog/src/git-operations.ts +0 -558
- package/references/sessionlog/src/hooks/git-hooks.ts +0 -165
- package/references/sessionlog/src/hooks/lifecycle.ts +0 -391
- package/references/sessionlog/src/index.ts +0 -650
- package/references/sessionlog/src/security/redaction.ts +0 -283
- package/references/sessionlog/src/session/state-machine.ts +0 -452
- package/references/sessionlog/src/store/checkpoint-store.ts +0 -509
- package/references/sessionlog/src/store/native-store.ts +0 -173
- package/references/sessionlog/src/store/provider-types.ts +0 -99
- package/references/sessionlog/src/store/session-store.ts +0 -266
- package/references/sessionlog/src/strategy/attribution.ts +0 -296
- package/references/sessionlog/src/strategy/common.ts +0 -207
- package/references/sessionlog/src/strategy/content-overlap.ts +0 -228
- package/references/sessionlog/src/strategy/manual-commit.ts +0 -988
- package/references/sessionlog/src/strategy/types.ts +0 -279
- package/references/sessionlog/src/summarize/claude-generator.ts +0 -115
- package/references/sessionlog/src/summarize/summarize.ts +0 -432
- package/references/sessionlog/src/types.ts +0 -508
- package/references/sessionlog/src/utils/chunk-files.ts +0 -49
- package/references/sessionlog/src/utils/commit-message.ts +0 -65
- package/references/sessionlog/src/utils/detect-agent.ts +0 -36
- package/references/sessionlog/src/utils/hook-managers.ts +0 -125
- package/references/sessionlog/src/utils/ide-tags.ts +0 -32
- package/references/sessionlog/src/utils/paths.ts +0 -79
- package/references/sessionlog/src/utils/preview-rewind.ts +0 -80
- package/references/sessionlog/src/utils/rewind-conflict.ts +0 -121
- package/references/sessionlog/src/utils/shadow-branch.ts +0 -109
- package/references/sessionlog/src/utils/string-utils.ts +0 -46
- package/references/sessionlog/src/utils/todo-extract.ts +0 -188
- package/references/sessionlog/src/utils/trailers.ts +0 -187
- package/references/sessionlog/src/utils/transcript-parse.ts +0 -177
- package/references/sessionlog/src/utils/transcript-timestamp.ts +0 -59
- package/references/sessionlog/src/utils/tree-ops.ts +0 -219
- package/references/sessionlog/src/utils/tty.ts +0 -72
- package/references/sessionlog/src/utils/validation.ts +0 -65
- package/references/sessionlog/src/utils/worktree.ts +0 -58
- package/references/sessionlog/src/wire-types.ts +0 -59
- package/references/sessionlog/templates/setup-env.sh +0 -153
- package/references/sessionlog/tsconfig.json +0 -18
- package/references/sessionlog/vitest.config.ts +0 -12
- package/references/skill-tree/.claude/settings.json +0 -6
- package/references/skill-tree/.sudocode/issues.jsonl +0 -19
- package/references/skill-tree/.sudocode/specs.jsonl +0 -3
- package/references/skill-tree/CLAUDE.md +0 -126
- package/references/skill-tree/README.md +0 -372
- package/references/skill-tree/docs/GAPS_v1.md +0 -221
- package/references/skill-tree/docs/INTEGRATION_PLAN.md +0 -467
- package/references/skill-tree/docs/TODOS.md +0 -91
- package/references/skill-tree/docs/anthropic_skill_guide.md +0 -1364
- package/references/skill-tree/docs/design/federated-skill-trees.md +0 -524
- package/references/skill-tree/docs/design/multi-agent-sync.md +0 -759
- package/references/skill-tree/docs/scraper/BRAINSTORM.md +0 -583
- package/references/skill-tree/docs/scraper/POC_PLAN.md +0 -420
- package/references/skill-tree/docs/scraper/README.md +0 -170
- package/references/skill-tree/examples/basic-usage.ts +0 -164
- package/references/skill-tree/package-lock.json +0 -1852
- package/references/skill-tree/package.json +0 -66
- package/references/skill-tree/scraper/README.md +0 -123
- package/references/skill-tree/scraper/docs/DESIGN.md +0 -683
- package/references/skill-tree/scraper/docs/PLAN.md +0 -336
- package/references/skill-tree/scraper/drizzle.config.ts +0 -10
- package/references/skill-tree/scraper/package-lock.json +0 -6329
- package/references/skill-tree/scraper/package.json +0 -68
- package/references/skill-tree/scraper/test/fixtures/invalid-skill/missing-description.md +0 -7
- package/references/skill-tree/scraper/test/fixtures/invalid-skill/missing-name.md +0 -7
- package/references/skill-tree/scraper/test/fixtures/minimal-skill/SKILL.md +0 -27
- package/references/skill-tree/scraper/test/fixtures/skill-json/SKILL.json +0 -21
- package/references/skill-tree/scraper/test/fixtures/skill-with-meta/SKILL.md +0 -54
- package/references/skill-tree/scraper/test/fixtures/skill-with-meta/_meta.json +0 -24
- package/references/skill-tree/scraper/test/fixtures/valid-skill/SKILL.md +0 -93
- package/references/skill-tree/scraper/test/fixtures/valid-skill/_meta.json +0 -22
- package/references/skill-tree/scraper/tsup.config.ts +0 -14
- package/references/skill-tree/scraper/vitest.config.ts +0 -17
- package/references/skill-tree/scripts/convert-to-vitest.ts +0 -166
- package/references/skill-tree/skills/skill-writer/SKILL.md +0 -339
- package/references/skill-tree/skills/skill-writer/references/examples.md +0 -326
- package/references/skill-tree/skills/skill-writer/references/patterns.md +0 -210
- package/references/skill-tree/skills/skill-writer/references/quality-checklist.md +0 -123
- package/references/skill-tree/test/run-all.ts +0 -106
- package/references/skill-tree/test/utils.ts +0 -128
- package/references/skill-tree/vitest.config.ts +0 -16
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
|
|
2
|
-
import * as fs from 'fs/promises';
|
|
3
|
-
import * as path from 'path';
|
|
4
|
-
import * as os from 'os';
|
|
5
|
-
import { WorkspaceManager } from '../src/manager.js';
|
|
6
|
-
import type { WorkspaceHandle } from '../src/handle.js';
|
|
7
|
-
|
|
8
|
-
describe('WorkspaceHandle', () => {
|
|
9
|
-
let baseDir: string;
|
|
10
|
-
let manager: WorkspaceManager;
|
|
11
|
-
let handle: WorkspaceHandle;
|
|
12
|
-
|
|
13
|
-
beforeEach(async () => {
|
|
14
|
-
baseDir = await fs.mkdtemp(path.join(os.tmpdir(), 'ws-handle-'));
|
|
15
|
-
manager = new WorkspaceManager({ baseDir });
|
|
16
|
-
handle = await manager.create('handle-test');
|
|
17
|
-
});
|
|
18
|
-
|
|
19
|
-
afterEach(async () => {
|
|
20
|
-
await fs.rm(baseDir, { recursive: true, force: true });
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
describe('dir()', () => {
|
|
24
|
-
it('returns path for known sections', () => {
|
|
25
|
-
expect(handle.dir('input')).toBe(path.join(handle.path, 'input'));
|
|
26
|
-
expect(handle.dir('output')).toBe(path.join(handle.path, 'output'));
|
|
27
|
-
expect(handle.dir('resources')).toBe(path.join(handle.path, 'resources'));
|
|
28
|
-
expect(handle.dir('scratch')).toBe(path.join(handle.path, 'scratch'));
|
|
29
|
-
});
|
|
30
|
-
|
|
31
|
-
it('throws for unknown sections', () => {
|
|
32
|
-
expect(() => handle.dir('unknown')).toThrow('Unknown section "unknown"');
|
|
33
|
-
});
|
|
34
|
-
|
|
35
|
-
it('works with additional dirs', async () => {
|
|
36
|
-
const h = await manager.create('test', { additionalDirs: ['skills'] });
|
|
37
|
-
expect(h.dir('skills')).toBe(path.join(h.path, 'skills'));
|
|
38
|
-
});
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
describe('convenience accessors', () => {
|
|
42
|
-
it('provides inputDir, outputDir, resourcesDir, scratchDir', () => {
|
|
43
|
-
expect(handle.inputDir).toBe(path.join(handle.path, 'input'));
|
|
44
|
-
expect(handle.outputDir).toBe(path.join(handle.path, 'output'));
|
|
45
|
-
expect(handle.resourcesDir).toBe(path.join(handle.path, 'resources'));
|
|
46
|
-
expect(handle.scratchDir).toBe(path.join(handle.path, 'scratch'));
|
|
47
|
-
});
|
|
48
|
-
});
|
|
49
|
-
|
|
50
|
-
describe('JSON round-trip', () => {
|
|
51
|
-
it('writes and reads JSON through the handle', async () => {
|
|
52
|
-
await handle.writeJson('input', 'config.json', { model: 'gpt-4' });
|
|
53
|
-
const data = await handle.readJson('input', 'config.json');
|
|
54
|
-
expect(data).toEqual({ model: 'gpt-4' });
|
|
55
|
-
});
|
|
56
|
-
|
|
57
|
-
it('writes and reads JSON with schema validation', async () => {
|
|
58
|
-
await handle.writeJson('output', 'result.json', { score: 0.95 });
|
|
59
|
-
|
|
60
|
-
const schema = {
|
|
61
|
-
parse(data: unknown) {
|
|
62
|
-
const obj = data as Record<string, number>;
|
|
63
|
-
if (typeof obj.score !== 'number') throw new Error('score required');
|
|
64
|
-
return obj;
|
|
65
|
-
},
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
const data = await handle.readJson('output', 'result.json', { schema });
|
|
69
|
-
expect(data).toEqual({ score: 0.95 });
|
|
70
|
-
});
|
|
71
|
-
});
|
|
72
|
-
|
|
73
|
-
describe('JSONL round-trip', () => {
|
|
74
|
-
it('writes and reads JSONL through the handle', async () => {
|
|
75
|
-
const items = [{ step: 1 }, { step: 2 }];
|
|
76
|
-
await handle.writeJsonl('scratch', 'log.jsonl', items);
|
|
77
|
-
const result = await handle.readJsonl('scratch', 'log.jsonl');
|
|
78
|
-
expect(result).toEqual(items);
|
|
79
|
-
});
|
|
80
|
-
});
|
|
81
|
-
|
|
82
|
-
describe('Markdown round-trip', () => {
|
|
83
|
-
it('writes and reads markdown with frontmatter', async () => {
|
|
84
|
-
await handle.writeMarkdown('output', 'report.md', {
|
|
85
|
-
frontmatter: { title: 'Report', version: 1 },
|
|
86
|
-
body: '# Summary\n\nAll good.',
|
|
87
|
-
});
|
|
88
|
-
|
|
89
|
-
const doc = await handle.readMarkdown('output', 'report.md');
|
|
90
|
-
expect(doc.frontmatter).toEqual({ title: 'Report', version: 1 });
|
|
91
|
-
expect(doc.body).toContain('# Summary');
|
|
92
|
-
});
|
|
93
|
-
});
|
|
94
|
-
|
|
95
|
-
describe('Raw round-trip', () => {
|
|
96
|
-
it('writes and reads raw content', async () => {
|
|
97
|
-
await handle.writeRaw('scratch', 'notes.txt', 'Remember this');
|
|
98
|
-
const content = await handle.readRaw('scratch', 'notes.txt');
|
|
99
|
-
expect(content).toBe('Remember this');
|
|
100
|
-
});
|
|
101
|
-
});
|
|
102
|
-
|
|
103
|
-
describe('listFiles', () => {
|
|
104
|
-
it('lists files in a section', async () => {
|
|
105
|
-
await handle.writeRaw('input', 'a.txt', 'a');
|
|
106
|
-
await handle.writeRaw('input', 'b.txt', 'b');
|
|
107
|
-
|
|
108
|
-
const files = await handle.listFiles('input');
|
|
109
|
-
expect(files.sort()).toEqual(['a.txt', 'b.txt']);
|
|
110
|
-
});
|
|
111
|
-
});
|
|
112
|
-
|
|
113
|
-
describe('readJsonDir', () => {
|
|
114
|
-
it('reads all JSON files in a subdirectory', async () => {
|
|
115
|
-
await handle.writeJson('output', 'results/a.json', { x: 1 });
|
|
116
|
-
await handle.writeJson('output', 'results/b.json', { x: 2 });
|
|
117
|
-
|
|
118
|
-
const map = await handle.readJsonDir('output', 'results');
|
|
119
|
-
expect(map.size).toBe(2);
|
|
120
|
-
expect(map.get('a.json')).toEqual({ x: 1 });
|
|
121
|
-
});
|
|
122
|
-
});
|
|
123
|
-
|
|
124
|
-
describe('validateOutput', () => {
|
|
125
|
-
it('validates output files via the handle', async () => {
|
|
126
|
-
await handle.writeJson('output', 'result.json', { ok: true });
|
|
127
|
-
|
|
128
|
-
const result = await handle.validateOutput({
|
|
129
|
-
files: [{ path: 'result.json', format: 'json', required: true }],
|
|
130
|
-
});
|
|
131
|
-
|
|
132
|
-
expect(result.valid).toBe(true);
|
|
133
|
-
});
|
|
134
|
-
|
|
135
|
-
it('reports missing required output files', async () => {
|
|
136
|
-
const result = await handle.validateOutput({
|
|
137
|
-
files: [{ path: 'missing.json', format: 'json', required: true }],
|
|
138
|
-
});
|
|
139
|
-
|
|
140
|
-
expect(result.valid).toBe(false);
|
|
141
|
-
expect(result.errors[0].message).toContain('Required file missing');
|
|
142
|
-
});
|
|
143
|
-
});
|
|
144
|
-
});
|
|
@@ -1,124 +0,0 @@
|
|
|
1
|
-
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
|
|
2
|
-
import * as fs from 'fs/promises';
|
|
3
|
-
import * as path from 'path';
|
|
4
|
-
import * as os from 'os';
|
|
5
|
-
import { WorkspaceManager } from '../src/manager.js';
|
|
6
|
-
|
|
7
|
-
describe('WorkspaceManager', () => {
|
|
8
|
-
let baseDir: string;
|
|
9
|
-
let manager: WorkspaceManager;
|
|
10
|
-
|
|
11
|
-
beforeEach(async () => {
|
|
12
|
-
baseDir = await fs.mkdtemp(path.join(os.tmpdir(), 'ws-test-'));
|
|
13
|
-
manager = new WorkspaceManager({ baseDir });
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
afterEach(async () => {
|
|
17
|
-
await fs.rm(baseDir, { recursive: true, force: true });
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
describe('create', () => {
|
|
21
|
-
it('creates a workspace with default directories', async () => {
|
|
22
|
-
const handle = await manager.create('test-task');
|
|
23
|
-
|
|
24
|
-
expect(handle.id).toMatch(/^test-task-/);
|
|
25
|
-
expect(handle.createdAt).toBeInstanceOf(Date);
|
|
26
|
-
|
|
27
|
-
// Verify all default dirs exist
|
|
28
|
-
for (const dir of ['input', 'output', 'resources', 'scratch']) {
|
|
29
|
-
const stat = await fs.stat(path.join(handle.path, dir));
|
|
30
|
-
expect(stat.isDirectory()).toBe(true);
|
|
31
|
-
}
|
|
32
|
-
});
|
|
33
|
-
|
|
34
|
-
it('creates additional directories when specified', async () => {
|
|
35
|
-
const handle = await manager.create('test-task', {
|
|
36
|
-
additionalDirs: ['skills', 'logs'],
|
|
37
|
-
});
|
|
38
|
-
|
|
39
|
-
for (const dir of ['input', 'output', 'resources', 'scratch', 'skills', 'logs']) {
|
|
40
|
-
const stat = await fs.stat(path.join(handle.path, dir));
|
|
41
|
-
expect(stat.isDirectory()).toBe(true);
|
|
42
|
-
}
|
|
43
|
-
});
|
|
44
|
-
|
|
45
|
-
it('writes workspace metadata', async () => {
|
|
46
|
-
const handle = await manager.create('my-task');
|
|
47
|
-
const metaRaw = await fs.readFile(path.join(handle.path, '.workspace.json'), 'utf-8');
|
|
48
|
-
const meta = JSON.parse(metaRaw);
|
|
49
|
-
|
|
50
|
-
expect(meta.id).toBe(handle.id);
|
|
51
|
-
expect(meta.taskType).toBe('my-task');
|
|
52
|
-
expect(meta.dirs).toEqual(['input', 'output', 'resources', 'scratch']);
|
|
53
|
-
});
|
|
54
|
-
|
|
55
|
-
it('includes additional dirs in metadata', async () => {
|
|
56
|
-
const handle = await manager.create('my-task', { additionalDirs: ['custom'] });
|
|
57
|
-
const metaRaw = await fs.readFile(path.join(handle.path, '.workspace.json'), 'utf-8');
|
|
58
|
-
const meta = JSON.parse(metaRaw);
|
|
59
|
-
|
|
60
|
-
expect(meta.dirs).toEqual(['input', 'output', 'resources', 'scratch', 'custom']);
|
|
61
|
-
});
|
|
62
|
-
});
|
|
63
|
-
|
|
64
|
-
describe('cleanup', () => {
|
|
65
|
-
it('removes the workspace directory', async () => {
|
|
66
|
-
const handle = await manager.create('test-task');
|
|
67
|
-
await manager.cleanup(handle);
|
|
68
|
-
|
|
69
|
-
await expect(fs.access(handle.path)).rejects.toThrow();
|
|
70
|
-
});
|
|
71
|
-
});
|
|
72
|
-
|
|
73
|
-
describe('list', () => {
|
|
74
|
-
it('returns empty array when no workspaces exist', async () => {
|
|
75
|
-
const handles = await manager.list();
|
|
76
|
-
expect(handles).toEqual([]);
|
|
77
|
-
});
|
|
78
|
-
|
|
79
|
-
it('lists all created workspaces', async () => {
|
|
80
|
-
await manager.create('task-a');
|
|
81
|
-
await manager.create('task-b');
|
|
82
|
-
|
|
83
|
-
const handles = await manager.list();
|
|
84
|
-
expect(handles).toHaveLength(2);
|
|
85
|
-
expect(handles.map((h) => h.id).sort()).toEqual(
|
|
86
|
-
expect.arrayContaining([expect.stringMatching(/^task-a-/), expect.stringMatching(/^task-b-/)]),
|
|
87
|
-
);
|
|
88
|
-
});
|
|
89
|
-
|
|
90
|
-
it('does not list cleaned-up workspaces', async () => {
|
|
91
|
-
const a = await manager.create('task-a');
|
|
92
|
-
await manager.create('task-b');
|
|
93
|
-
await manager.cleanup(a);
|
|
94
|
-
|
|
95
|
-
const handles = await manager.list();
|
|
96
|
-
expect(handles).toHaveLength(1);
|
|
97
|
-
expect(handles[0].id).toMatch(/^task-b-/);
|
|
98
|
-
});
|
|
99
|
-
});
|
|
100
|
-
|
|
101
|
-
describe('pruneStale', () => {
|
|
102
|
-
it('removes workspaces older than maxAgeMs', async () => {
|
|
103
|
-
await manager.create('old-task');
|
|
104
|
-
|
|
105
|
-
// Prune everything older than 0ms (i.e. everything)
|
|
106
|
-
const pruned = await manager.pruneStale(0);
|
|
107
|
-
expect(pruned).toBe(1);
|
|
108
|
-
|
|
109
|
-
const handles = await manager.list();
|
|
110
|
-
expect(handles).toHaveLength(0);
|
|
111
|
-
});
|
|
112
|
-
|
|
113
|
-
it('keeps workspaces newer than maxAgeMs', async () => {
|
|
114
|
-
await manager.create('new-task');
|
|
115
|
-
|
|
116
|
-
// Prune things older than 1 hour
|
|
117
|
-
const pruned = await manager.pruneStale(60 * 60 * 1000);
|
|
118
|
-
expect(pruned).toBe(0);
|
|
119
|
-
|
|
120
|
-
const handles = await manager.list();
|
|
121
|
-
expect(handles).toHaveLength(1);
|
|
122
|
-
});
|
|
123
|
-
});
|
|
124
|
-
});
|
|
@@ -1,205 +0,0 @@
|
|
|
1
|
-
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
|
|
2
|
-
import * as fs from 'fs/promises';
|
|
3
|
-
import * as path from 'path';
|
|
4
|
-
import * as os from 'os';
|
|
5
|
-
import {
|
|
6
|
-
readJson,
|
|
7
|
-
readJsonl,
|
|
8
|
-
readJsonDir,
|
|
9
|
-
readMarkdown,
|
|
10
|
-
readRaw,
|
|
11
|
-
listFiles,
|
|
12
|
-
} from '../src/index.js';
|
|
13
|
-
|
|
14
|
-
describe('Readers', () => {
|
|
15
|
-
let dir: string;
|
|
16
|
-
|
|
17
|
-
beforeEach(async () => {
|
|
18
|
-
dir = await fs.mkdtemp(path.join(os.tmpdir(), 'ws-readers-'));
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
afterEach(async () => {
|
|
22
|
-
await fs.rm(dir, { recursive: true, force: true });
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
describe('readJson', () => {
|
|
26
|
-
it('reads and parses a JSON file', async () => {
|
|
27
|
-
await fs.writeFile(path.join(dir, 'data.json'), '{"key": "value"}');
|
|
28
|
-
const data = await readJson(dir, 'data.json');
|
|
29
|
-
expect(data).toEqual({ key: 'value' });
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
it('validates with a schema', async () => {
|
|
33
|
-
await fs.writeFile(path.join(dir, 'data.json'), '{"key": "value"}');
|
|
34
|
-
|
|
35
|
-
const schema = {
|
|
36
|
-
parse(data: unknown) {
|
|
37
|
-
const obj = data as Record<string, string>;
|
|
38
|
-
if (typeof obj.key !== 'string') throw new Error('key must be string');
|
|
39
|
-
return obj;
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
const data = await readJson(dir, 'data.json', { schema });
|
|
44
|
-
expect(data).toEqual({ key: 'value' });
|
|
45
|
-
});
|
|
46
|
-
|
|
47
|
-
it('throws when schema validation fails', async () => {
|
|
48
|
-
await fs.writeFile(path.join(dir, 'data.json'), '{"key": 123}');
|
|
49
|
-
|
|
50
|
-
const schema = {
|
|
51
|
-
parse(data: unknown) {
|
|
52
|
-
const obj = data as Record<string, unknown>;
|
|
53
|
-
if (typeof obj.key !== 'string') throw new Error('key must be string');
|
|
54
|
-
return obj;
|
|
55
|
-
},
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
await expect(readJson(dir, 'data.json', { schema })).rejects.toThrow('key must be string');
|
|
59
|
-
});
|
|
60
|
-
|
|
61
|
-
it('throws when file does not exist', async () => {
|
|
62
|
-
await expect(readJson(dir, 'nonexistent.json')).rejects.toThrow();
|
|
63
|
-
});
|
|
64
|
-
});
|
|
65
|
-
|
|
66
|
-
describe('readJsonl', () => {
|
|
67
|
-
it('reads and parses a JSONL file', async () => {
|
|
68
|
-
await fs.writeFile(path.join(dir, 'data.jsonl'), '{"a":1}\n{"b":2}\n{"c":3}\n');
|
|
69
|
-
const items = await readJsonl(dir, 'data.jsonl');
|
|
70
|
-
expect(items).toEqual([{ a: 1 }, { b: 2 }, { c: 3 }]);
|
|
71
|
-
});
|
|
72
|
-
|
|
73
|
-
it('validates each line with a schema', async () => {
|
|
74
|
-
await fs.writeFile(path.join(dir, 'data.jsonl'), '{"n":1}\n{"n":2}\n');
|
|
75
|
-
|
|
76
|
-
const schema = {
|
|
77
|
-
parse(data: unknown) {
|
|
78
|
-
const obj = data as Record<string, number>;
|
|
79
|
-
if (typeof obj.n !== 'number') throw new Error('n must be number');
|
|
80
|
-
return obj;
|
|
81
|
-
},
|
|
82
|
-
};
|
|
83
|
-
|
|
84
|
-
const items = await readJsonl(dir, 'data.jsonl', { schema });
|
|
85
|
-
expect(items).toEqual([{ n: 1 }, { n: 2 }]);
|
|
86
|
-
});
|
|
87
|
-
|
|
88
|
-
it('throws with line number on validation failure', async () => {
|
|
89
|
-
await fs.writeFile(path.join(dir, 'data.jsonl'), '{"n":1}\n{"n":"bad"}\n');
|
|
90
|
-
|
|
91
|
-
const schema = {
|
|
92
|
-
parse(data: unknown) {
|
|
93
|
-
const obj = data as Record<string, unknown>;
|
|
94
|
-
if (typeof obj.n !== 'number') throw new Error('n must be number');
|
|
95
|
-
return obj;
|
|
96
|
-
},
|
|
97
|
-
};
|
|
98
|
-
|
|
99
|
-
await expect(readJsonl(dir, 'data.jsonl', { schema })).rejects.toThrow(
|
|
100
|
-
'JSONL validation failed at line 2',
|
|
101
|
-
);
|
|
102
|
-
});
|
|
103
|
-
});
|
|
104
|
-
|
|
105
|
-
describe('readJsonDir', () => {
|
|
106
|
-
it('reads all JSON files in a directory', async () => {
|
|
107
|
-
const sub = path.join(dir, 'results');
|
|
108
|
-
await fs.mkdir(sub);
|
|
109
|
-
await fs.writeFile(path.join(sub, 'a.json'), '{"x":1}');
|
|
110
|
-
await fs.writeFile(path.join(sub, 'b.json'), '{"x":2}');
|
|
111
|
-
await fs.writeFile(path.join(sub, 'c.txt'), 'not json'); // should be skipped
|
|
112
|
-
|
|
113
|
-
const result = await readJsonDir(dir, 'results');
|
|
114
|
-
expect(result.size).toBe(2);
|
|
115
|
-
expect(result.get('a.json')).toEqual({ x: 1 });
|
|
116
|
-
expect(result.get('b.json')).toEqual({ x: 2 });
|
|
117
|
-
});
|
|
118
|
-
});
|
|
119
|
-
|
|
120
|
-
describe('readMarkdown', () => {
|
|
121
|
-
it('reads markdown with YAML frontmatter', async () => {
|
|
122
|
-
await fs.writeFile(
|
|
123
|
-
path.join(dir, 'doc.md'),
|
|
124
|
-
'---\ntitle: Hello\ntags:\n - a\n - b\n---\n\n# Content\n',
|
|
125
|
-
);
|
|
126
|
-
|
|
127
|
-
const doc = await readMarkdown(dir, 'doc.md');
|
|
128
|
-
expect(doc.frontmatter).toEqual({ title: 'Hello', tags: ['a', 'b'] });
|
|
129
|
-
expect(doc.body).toBe('# Content\n');
|
|
130
|
-
});
|
|
131
|
-
|
|
132
|
-
it('reads markdown without frontmatter', async () => {
|
|
133
|
-
await fs.writeFile(path.join(dir, 'plain.md'), '# No frontmatter\n');
|
|
134
|
-
|
|
135
|
-
const doc = await readMarkdown(dir, 'plain.md');
|
|
136
|
-
expect(doc.frontmatter).toEqual({});
|
|
137
|
-
expect(doc.body).toBe('# No frontmatter\n');
|
|
138
|
-
});
|
|
139
|
-
|
|
140
|
-
it('validates frontmatter with a schema', async () => {
|
|
141
|
-
await fs.writeFile(
|
|
142
|
-
path.join(dir, 'doc.md'),
|
|
143
|
-
'---\ntitle: Test\n---\n\nBody.\n',
|
|
144
|
-
);
|
|
145
|
-
|
|
146
|
-
const schema = {
|
|
147
|
-
parse(data: unknown) {
|
|
148
|
-
const obj = data as Record<string, string>;
|
|
149
|
-
if (!obj.title) throw new Error('title required');
|
|
150
|
-
return obj;
|
|
151
|
-
},
|
|
152
|
-
};
|
|
153
|
-
|
|
154
|
-
const doc = await readMarkdown(dir, 'doc.md', { frontmatterSchema: schema });
|
|
155
|
-
expect(doc.frontmatter).toEqual({ title: 'Test' });
|
|
156
|
-
});
|
|
157
|
-
|
|
158
|
-
it('throws when frontmatter schema fails', async () => {
|
|
159
|
-
await fs.writeFile(
|
|
160
|
-
path.join(dir, 'doc.md'),
|
|
161
|
-
'---\nfoo: bar\n---\n\nBody.\n',
|
|
162
|
-
);
|
|
163
|
-
|
|
164
|
-
const schema = {
|
|
165
|
-
parse(data: unknown) {
|
|
166
|
-
const obj = data as Record<string, string>;
|
|
167
|
-
if (!obj.title) throw new Error('title required');
|
|
168
|
-
return obj;
|
|
169
|
-
},
|
|
170
|
-
};
|
|
171
|
-
|
|
172
|
-
await expect(readMarkdown(dir, 'doc.md', { frontmatterSchema: schema })).rejects.toThrow(
|
|
173
|
-
'title required',
|
|
174
|
-
);
|
|
175
|
-
});
|
|
176
|
-
});
|
|
177
|
-
|
|
178
|
-
describe('readRaw', () => {
|
|
179
|
-
it('reads a file as a raw string', async () => {
|
|
180
|
-
await fs.writeFile(path.join(dir, 'data.txt'), 'hello world');
|
|
181
|
-
const content = await readRaw(dir, 'data.txt');
|
|
182
|
-
expect(content).toBe('hello world');
|
|
183
|
-
});
|
|
184
|
-
});
|
|
185
|
-
|
|
186
|
-
describe('listFiles', () => {
|
|
187
|
-
it('lists files recursively', async () => {
|
|
188
|
-
await fs.mkdir(path.join(dir, 'sub'), { recursive: true });
|
|
189
|
-
await fs.writeFile(path.join(dir, 'a.txt'), '');
|
|
190
|
-
await fs.writeFile(path.join(dir, 'sub', 'b.txt'), '');
|
|
191
|
-
|
|
192
|
-
const files = await listFiles(dir);
|
|
193
|
-
expect(files.sort()).toEqual(['a.txt', 'sub/b.txt'].sort());
|
|
194
|
-
});
|
|
195
|
-
|
|
196
|
-
it('lists files under a subpath', async () => {
|
|
197
|
-
const sub = path.join(dir, 'nested');
|
|
198
|
-
await fs.mkdir(sub);
|
|
199
|
-
await fs.writeFile(path.join(sub, 'file.txt'), '');
|
|
200
|
-
|
|
201
|
-
const files = await listFiles(dir, 'nested');
|
|
202
|
-
expect(files).toEqual(['nested/file.txt']);
|
|
203
|
-
});
|
|
204
|
-
});
|
|
205
|
-
});
|
|
@@ -1,196 +0,0 @@
|
|
|
1
|
-
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
|
|
2
|
-
import * as fs from 'fs/promises';
|
|
3
|
-
import * as path from 'path';
|
|
4
|
-
import * as os from 'os';
|
|
5
|
-
import { validateOutput } from '../src/validation.js';
|
|
6
|
-
import type { OutputSpec } from '../src/types.js';
|
|
7
|
-
|
|
8
|
-
describe('validateOutput', () => {
|
|
9
|
-
let outputDir: string;
|
|
10
|
-
|
|
11
|
-
beforeEach(async () => {
|
|
12
|
-
outputDir = await fs.mkdtemp(path.join(os.tmpdir(), 'ws-validation-'));
|
|
13
|
-
});
|
|
14
|
-
|
|
15
|
-
afterEach(async () => {
|
|
16
|
-
await fs.rm(outputDir, { recursive: true, force: true });
|
|
17
|
-
});
|
|
18
|
-
|
|
19
|
-
it('passes when all required files exist and are valid', async () => {
|
|
20
|
-
await fs.writeFile(path.join(outputDir, 'result.json'), '{"ok": true}');
|
|
21
|
-
|
|
22
|
-
const spec: OutputSpec = {
|
|
23
|
-
files: [{ path: 'result.json', format: 'json', required: true }],
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
const result = await validateOutput(outputDir, spec);
|
|
27
|
-
expect(result.valid).toBe(true);
|
|
28
|
-
expect(result.errors).toHaveLength(0);
|
|
29
|
-
});
|
|
30
|
-
|
|
31
|
-
it('fails when a required file is missing', async () => {
|
|
32
|
-
const spec: OutputSpec = {
|
|
33
|
-
files: [
|
|
34
|
-
{
|
|
35
|
-
path: 'missing.json',
|
|
36
|
-
format: 'json',
|
|
37
|
-
required: true,
|
|
38
|
-
description: 'The main result',
|
|
39
|
-
},
|
|
40
|
-
],
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
const result = await validateOutput(outputDir, spec);
|
|
44
|
-
expect(result.valid).toBe(false);
|
|
45
|
-
expect(result.errors).toHaveLength(1);
|
|
46
|
-
expect(result.errors[0].message).toContain('Required file missing');
|
|
47
|
-
expect(result.errors[0].message).toContain('The main result');
|
|
48
|
-
});
|
|
49
|
-
|
|
50
|
-
it('skips missing optional files without error', async () => {
|
|
51
|
-
const spec: OutputSpec = {
|
|
52
|
-
files: [{ path: 'optional.json', format: 'json', required: false }],
|
|
53
|
-
};
|
|
54
|
-
|
|
55
|
-
const result = await validateOutput(outputDir, spec);
|
|
56
|
-
expect(result.valid).toBe(true);
|
|
57
|
-
expect(result.errors).toHaveLength(0);
|
|
58
|
-
});
|
|
59
|
-
|
|
60
|
-
it('validates JSON files with a schema', async () => {
|
|
61
|
-
await fs.writeFile(path.join(outputDir, 'result.json'), '{"count": "not a number"}');
|
|
62
|
-
|
|
63
|
-
const spec: OutputSpec = {
|
|
64
|
-
files: [
|
|
65
|
-
{
|
|
66
|
-
path: 'result.json',
|
|
67
|
-
format: 'json',
|
|
68
|
-
required: true,
|
|
69
|
-
schema: {
|
|
70
|
-
parse(data: unknown) {
|
|
71
|
-
const obj = data as Record<string, unknown>;
|
|
72
|
-
if (typeof obj.count !== 'number') throw new Error('count must be a number');
|
|
73
|
-
return obj;
|
|
74
|
-
},
|
|
75
|
-
},
|
|
76
|
-
},
|
|
77
|
-
],
|
|
78
|
-
};
|
|
79
|
-
|
|
80
|
-
const result = await validateOutput(outputDir, spec);
|
|
81
|
-
expect(result.valid).toBe(false);
|
|
82
|
-
expect(result.errors[0].message).toContain('Schema validation failed');
|
|
83
|
-
expect(result.errors[0].message).toContain('count must be a number');
|
|
84
|
-
});
|
|
85
|
-
|
|
86
|
-
it('validates JSONL files with a schema (per-item)', async () => {
|
|
87
|
-
await fs.writeFile(
|
|
88
|
-
path.join(outputDir, 'steps.jsonl'),
|
|
89
|
-
'{"step":1}\n{"step":"bad"}\n',
|
|
90
|
-
);
|
|
91
|
-
|
|
92
|
-
const spec: OutputSpec = {
|
|
93
|
-
files: [
|
|
94
|
-
{
|
|
95
|
-
path: 'steps.jsonl',
|
|
96
|
-
format: 'jsonl',
|
|
97
|
-
required: true,
|
|
98
|
-
schema: {
|
|
99
|
-
parse(data: unknown) {
|
|
100
|
-
const obj = data as Record<string, unknown>;
|
|
101
|
-
if (typeof obj.step !== 'number') throw new Error('step must be number');
|
|
102
|
-
return obj;
|
|
103
|
-
},
|
|
104
|
-
},
|
|
105
|
-
},
|
|
106
|
-
],
|
|
107
|
-
};
|
|
108
|
-
|
|
109
|
-
const result = await validateOutput(outputDir, spec);
|
|
110
|
-
expect(result.valid).toBe(false);
|
|
111
|
-
expect(result.errors[0].message).toContain('Schema validation failed');
|
|
112
|
-
});
|
|
113
|
-
|
|
114
|
-
it('runs custom validate callback', async () => {
|
|
115
|
-
await fs.writeFile(path.join(outputDir, 'result.json'), '{"score": 0.3}');
|
|
116
|
-
|
|
117
|
-
const spec: OutputSpec = {
|
|
118
|
-
files: [
|
|
119
|
-
{
|
|
120
|
-
path: 'result.json',
|
|
121
|
-
format: 'json',
|
|
122
|
-
required: true,
|
|
123
|
-
validate: (content) => {
|
|
124
|
-
const obj = content as Record<string, number>;
|
|
125
|
-
return obj.score >= 0.5;
|
|
126
|
-
},
|
|
127
|
-
},
|
|
128
|
-
],
|
|
129
|
-
};
|
|
130
|
-
|
|
131
|
-
const result = await validateOutput(outputDir, spec);
|
|
132
|
-
expect(result.valid).toBe(false);
|
|
133
|
-
expect(result.errors[0].message).toContain('Custom validation returned false');
|
|
134
|
-
});
|
|
135
|
-
|
|
136
|
-
it('catches errors thrown by custom validate callback', async () => {
|
|
137
|
-
await fs.writeFile(path.join(outputDir, 'result.json'), '{"data": null}');
|
|
138
|
-
|
|
139
|
-
const spec: OutputSpec = {
|
|
140
|
-
files: [
|
|
141
|
-
{
|
|
142
|
-
path: 'result.json',
|
|
143
|
-
format: 'json',
|
|
144
|
-
required: true,
|
|
145
|
-
validate: () => {
|
|
146
|
-
throw new Error('Data cannot be null');
|
|
147
|
-
},
|
|
148
|
-
},
|
|
149
|
-
],
|
|
150
|
-
};
|
|
151
|
-
|
|
152
|
-
const result = await validateOutput(outputDir, spec);
|
|
153
|
-
expect(result.valid).toBe(false);
|
|
154
|
-
expect(result.errors[0].message).toContain('Custom validation threw');
|
|
155
|
-
expect(result.errors[0].message).toContain('Data cannot be null');
|
|
156
|
-
});
|
|
157
|
-
|
|
158
|
-
it('validates markdown files', async () => {
|
|
159
|
-
await fs.writeFile(
|
|
160
|
-
path.join(outputDir, 'report.md'),
|
|
161
|
-
'---\ntitle: Report\n---\n\n# Summary\n',
|
|
162
|
-
);
|
|
163
|
-
|
|
164
|
-
const spec: OutputSpec = {
|
|
165
|
-
files: [{ path: 'report.md', format: 'markdown', required: true }],
|
|
166
|
-
};
|
|
167
|
-
|
|
168
|
-
const result = await validateOutput(outputDir, spec);
|
|
169
|
-
expect(result.valid).toBe(true);
|
|
170
|
-
});
|
|
171
|
-
|
|
172
|
-
it('validates raw files', async () => {
|
|
173
|
-
await fs.writeFile(path.join(outputDir, 'output.txt'), 'some text');
|
|
174
|
-
|
|
175
|
-
const spec: OutputSpec = {
|
|
176
|
-
files: [{ path: 'output.txt', format: 'raw', required: true }],
|
|
177
|
-
};
|
|
178
|
-
|
|
179
|
-
const result = await validateOutput(outputDir, spec);
|
|
180
|
-
expect(result.valid).toBe(true);
|
|
181
|
-
});
|
|
182
|
-
|
|
183
|
-
it('collects multiple errors', async () => {
|
|
184
|
-
const spec: OutputSpec = {
|
|
185
|
-
files: [
|
|
186
|
-
{ path: 'a.json', format: 'json', required: true },
|
|
187
|
-
{ path: 'b.json', format: 'json', required: true },
|
|
188
|
-
{ path: 'c.json', format: 'json', required: false },
|
|
189
|
-
],
|
|
190
|
-
};
|
|
191
|
-
|
|
192
|
-
const result = await validateOutput(outputDir, spec);
|
|
193
|
-
expect(result.valid).toBe(false);
|
|
194
|
-
expect(result.errors).toHaveLength(2); // a.json and b.json missing, c.json optional
|
|
195
|
-
});
|
|
196
|
-
});
|