ultimate-pi 0.1.2 → 0.1.4
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/.agents/skills/ck-search/SKILL.md +99 -0
- package/.agents/skills/defuddle/SKILL.md +90 -0
- package/.agents/skills/find-skills/SKILL.md +142 -0
- package/.agents/skills/firecrawl/SKILL.md +150 -0
- package/.agents/skills/firecrawl/rules/install.md +82 -0
- package/.agents/skills/firecrawl/rules/security.md +26 -0
- package/.agents/skills/firecrawl-agent/SKILL.md +57 -0
- package/.agents/skills/firecrawl-build-interact/SKILL.md +67 -0
- package/.agents/skills/firecrawl-build-onboarding/SKILL.md +102 -0
- package/.agents/skills/firecrawl-build-onboarding/references/auth-flow.md +39 -0
- package/.agents/skills/firecrawl-build-onboarding/references/project-setup.md +20 -0
- package/.agents/skills/firecrawl-build-onboarding/references/sdk-installation.md +17 -0
- package/.agents/skills/firecrawl-build-scrape/SKILL.md +68 -0
- package/.agents/skills/firecrawl-build-search/SKILL.md +68 -0
- package/.agents/skills/firecrawl-crawl/SKILL.md +58 -0
- package/.agents/skills/firecrawl-download/SKILL.md +69 -0
- package/.agents/skills/firecrawl-interact/SKILL.md +83 -0
- package/.agents/skills/firecrawl-map/SKILL.md +50 -0
- package/.agents/skills/firecrawl-parse/SKILL.md +61 -0
- package/.agents/skills/firecrawl-scrape/SKILL.md +68 -0
- package/.agents/skills/firecrawl-search/SKILL.md +59 -0
- package/.agents/skills/obsidian-bases/SKILL.md +299 -0
- package/.agents/skills/obsidian-markdown/SKILL.md +237 -0
- package/.agents/skills/posthog-analyst/SKILL.md +306 -0
- package/.agents/skills/posthog-analyst/evals/evals.json +23 -0
- package/.agents/skills/wiki/SKILL.md +215 -0
- package/.agents/skills/wiki/references/css-snippets.md +122 -0
- package/.agents/skills/wiki/references/frontmatter.md +107 -0
- package/.agents/skills/wiki/references/git-setup.md +58 -0
- package/.agents/skills/wiki/references/mcp-setup.md +149 -0
- package/.agents/skills/wiki/references/modes.md +259 -0
- package/.agents/skills/wiki/references/plugins.md +96 -0
- package/.agents/skills/wiki/references/rest-api.md +124 -0
- package/.agents/skills/wiki-autoresearch/SKILL.md +211 -0
- package/.agents/skills/wiki-autoresearch/references/program.md +75 -0
- package/.agents/skills/wiki-fold/SKILL.md +204 -0
- package/.agents/skills/wiki-fold/references/fold-template.md +133 -0
- package/.agents/skills/wiki-ingest/SKILL.md +288 -0
- package/.agents/skills/wiki-lint/SKILL.md +183 -0
- package/.agents/skills/wiki-query/SKILL.md +176 -0
- package/.agents/skills/wiki-save/SKILL.md +128 -0
- package/.ckignore +41 -0
- package/.env.example +9 -0
- package/.github/workflows/lint.yml +33 -0
- package/.github/workflows/publish-github-packages.yml +35 -0
- package/.github/workflows/publish-npm.yml +1 -1
- package/.pi/SYSTEM.md +107 -40
- package/.pi/agents/pi-pi/agent-expert.md +205 -0
- package/.pi/agents/pi-pi/cli-expert.md +47 -0
- package/.pi/agents/pi-pi/config-expert.md +67 -0
- package/.pi/agents/pi-pi/ext-expert.md +53 -0
- package/.pi/agents/pi-pi/keybinding-expert.md +123 -0
- package/.pi/agents/pi-pi/pi-orchestrator.md +103 -0
- package/.pi/agents/pi-pi/prompt-expert.md +83 -0
- package/.pi/agents/pi-pi/skill-expert.md +52 -0
- package/.pi/agents/pi-pi/theme-expert.md +46 -0
- package/.pi/agents/pi-pi/tui-expert.md +100 -0
- package/.pi/agents/rethink.md +140 -0
- package/.pi/agents/wiki-ingest.md +67 -0
- package/.pi/agents/wiki-lint.md +75 -0
- package/.pi/auto-commit.json +20 -0
- package/.pi/extensions/banner.png +0 -0
- package/.pi/extensions/ck-enforce.ts +216 -0
- package/.pi/extensions/custom-footer.ts +308 -0
- package/.pi/extensions/custom-header.ts +116 -0
- package/.pi/extensions/dotenv-loader.ts +170 -0
- package/.pi/internal/cursor-sdk-transcript-parser.ts +59 -0
- package/.pi/model-router.json +95 -0
- package/.pi/npm/.gitignore +2 -0
- package/.pi/prompts/git-sync.md +124 -0
- package/.pi/prompts/harness-setup.md +509 -0
- package/.pi/prompts/save.md +16 -0
- package/.pi/prompts/wiki-autoresearch.md +19 -0
- package/.pi/prompts/wiki.md +23 -0
- package/.pi/providers/cursor-sdk-provider.test.mjs +476 -0
- package/.pi/providers/cursor-sdk-provider.ts +1085 -0
- package/.pi/settings.json +14 -4
- package/.pi/skills/agent-router/SKILL.md +174 -0
- package/.pi/sounds/alert/1-kaching-track.mp3 +0 -0
- package/.pi/sounds/error/1-ksi-wth-track.mp3 +0 -0
- package/.pi/sounds/error/2-smash-track.mp3 +0 -0
- package/.pi/sounds/error/3-buzzer-track.mp3 +0 -0
- package/.pi/sounds/notification/1-soft-notification-track.mp3 +0 -0
- package/.pi/sounds/project-sounds.json +25 -0
- package/.pi/sounds/reminder/1-soft-notification-track.mp3 +0 -0
- package/.pi/sounds/success/1-tada-track.mp3 +0 -0
- package/.pi/sounds/success/2-jobs-done-track.mp3 +0 -0
- package/.pi/sounds/success/3-yay-track.mp3 +0 -0
- package/CONTRIBUTING.md +116 -0
- package/README.md +32 -39
- package/biome.json +34 -0
- package/firecrawl/.env.template +58 -0
- package/firecrawl/README.md +49 -0
- package/firecrawl/docker-compose.yaml +201 -0
- package/firecrawl/searxng/searxng.env +3 -0
- package/firecrawl/searxng/settings.yml +85 -0
- package/lefthook.yml +8 -0
- package/package.json +55 -24
- package/vault/AGENTS.md +37 -0
- package/vault/wiki/_templates/comparison.md +39 -0
- package/vault/wiki/_templates/concept.md +40 -0
- package/vault/wiki/_templates/decision.md +21 -0
- package/vault/wiki/_templates/entity.md +32 -0
- package/vault/wiki/_templates/flow.md +14 -0
- package/vault/wiki/_templates/module.md +18 -0
- package/vault/wiki/_templates/question.md +31 -0
- package/vault/wiki/_templates/source.md +39 -0
- package/vault/wiki/concepts/AST-Aware Code Chunking.md +44 -0
- package/vault/wiki/concepts/Build-Time Prompt Compilation.md +107 -0
- package/vault/wiki/concepts/Context Engine (AI Coding).md +47 -0
- package/vault/wiki/concepts/Context-Aware System Reminders.md +61 -0
- package/vault/wiki/concepts/Contextualized Text Embedding.md +42 -0
- package/vault/wiki/concepts/Contractor vs Employee AI Model.md +55 -0
- package/vault/wiki/concepts/Dual-Model Agent Architecture.md +65 -0
- package/vault/wiki/concepts/Late Chunking vs Early Chunking.md +43 -0
- package/vault/wiki/concepts/Majority Vote Ensembling.md +68 -0
- package/vault/wiki/concepts/Meta-Harness.md +16 -0
- package/vault/wiki/concepts/Multi-Agent AI Coding Architecture.md +75 -0
- package/vault/wiki/concepts/Prompt Enhancement.md +90 -0
- package/vault/wiki/concepts/Prompt Renderer.md +89 -0
- package/vault/wiki/concepts/Semantic Codebase Indexing.md +67 -0
- package/vault/wiki/concepts/additive-config-hierarchy.md +16 -0
- package/vault/wiki/concepts/agent-artifacts-verifiable-deliverables.md +71 -0
- package/vault/wiki/concepts/agent-browser-browser-automation.md +99 -0
- package/vault/wiki/concepts/agent-codebase-interface.md +43 -0
- package/vault/wiki/concepts/agent-harness-architecture.md +67 -0
- package/vault/wiki/concepts/agent-loop-detection-patterns.md +133 -0
- package/vault/wiki/concepts/agent-search-enforcement.md +126 -0
- package/vault/wiki/concepts/agent-skills-ecosystem.md +74 -0
- package/vault/wiki/concepts/agent-skills-pattern.md +68 -0
- package/vault/wiki/concepts/agentic-harness-context-enforcement.md +91 -0
- package/vault/wiki/concepts/agentic-harness.md +34 -0
- package/vault/wiki/concepts/agentic-orchestration-pipeline.md +56 -0
- package/vault/wiki/concepts/agentic-search-no-embeddings.md +18 -0
- package/vault/wiki/concepts/anthropic-context-engineering.md +13 -0
- package/vault/wiki/concepts/antigravity-agent-first-architecture.md +61 -0
- package/vault/wiki/concepts/ast-compression.md +19 -0
- package/vault/wiki/concepts/ast-truncation.md +66 -0
- package/vault/wiki/concepts/barrel-files.md +37 -0
- package/vault/wiki/concepts/browser-harness-agent.md +41 -0
- package/vault/wiki/concepts/browser-subagent-visual-verification.md +82 -0
- package/vault/wiki/concepts/codebase-intelligence-ecosystem-comparison.md +192 -0
- package/vault/wiki/concepts/codebase-intelligence-harness-integration.md +161 -0
- package/vault/wiki/concepts/codebase-to-context-ingestion.md +46 -0
- package/vault/wiki/concepts/codex-harness-innovations.md +147 -0
- package/vault/wiki/concepts/consensus-debate-flow.md +17 -0
- package/vault/wiki/concepts/consensus-debate.md +206 -0
- package/vault/wiki/concepts/content-addressed-spec-identity.md +166 -0
- package/vault/wiki/concepts/context-anxiety.md +57 -0
- package/vault/wiki/concepts/context-compression-techniques.md +19 -0
- package/vault/wiki/concepts/context-continuity.md +22 -0
- package/vault/wiki/concepts/context-drift-in-agents.md +106 -0
- package/vault/wiki/concepts/context-engineering.md +62 -0
- package/vault/wiki/concepts/context-folding.md +67 -0
- package/vault/wiki/concepts/context-mode.md +38 -0
- package/vault/wiki/concepts/cursor-harness-innovations.md +107 -0
- package/vault/wiki/concepts/deterministic-session-compaction.md +79 -0
- package/vault/wiki/concepts/drift-detection-unified.md +296 -0
- package/vault/wiki/concepts/execution-feedback-loop.md +46 -0
- package/vault/wiki/concepts/feedforward-feedback-harness.md +60 -0
- package/vault/wiki/concepts/five-root-cause-metrics-sentrux.md +40 -0
- package/vault/wiki/concepts/fork-safe-spec-storage.md +89 -0
- package/vault/wiki/concepts/fts5-sandbox.md +19 -0
- package/vault/wiki/concepts/fuzzy-edit-matching.md +71 -0
- package/vault/wiki/concepts/gemini-cli-architecture.md +104 -0
- package/vault/wiki/concepts/generator-evaluator-architecture.md +64 -0
- package/vault/wiki/concepts/guardian-agent-pattern.md +67 -0
- package/vault/wiki/concepts/harness-configuration-layers.md +89 -0
- package/vault/wiki/concepts/harness-control-frameworks.md +155 -0
- package/vault/wiki/concepts/harness-engineering-first-principles.md +90 -0
- package/vault/wiki/concepts/harness-h-formalism.md +53 -0
- package/vault/wiki/concepts/hybrid-code-search.md +61 -0
- package/vault/wiki/concepts/inline-post-edit-validation.md +112 -0
- package/vault/wiki/concepts/legendary-engineering-patterns-harness.md +110 -0
- package/vault/wiki/concepts/lifecycle-hooks.md +94 -0
- package/vault/wiki/concepts/mcp-tool-routing.md +102 -0
- package/vault/wiki/concepts/memory-system-of-record-vs-ephemeral-cache.md +47 -0
- package/vault/wiki/concepts/meta-agent-context-pruning.md +151 -0
- package/vault/wiki/concepts/model-adaptive-harness.md +122 -0
- package/vault/wiki/concepts/model-routing-agents.md +101 -0
- package/vault/wiki/concepts/monorepo-architecture.md +45 -0
- package/vault/wiki/concepts/multi-agent-specialization.md +61 -0
- package/vault/wiki/concepts/permission-subsystem.md +16 -0
- package/vault/wiki/concepts/pi-messenger-analysis.md +243 -0
- package/vault/wiki/concepts/pi-vscode-extension-landscape.md +37 -0
- package/vault/wiki/concepts/policy-engine-pattern.md +78 -0
- package/vault/wiki/concepts/progressive-disclosure-agents.md +53 -0
- package/vault/wiki/concepts/progressive-skill-disclosure.md +17 -0
- package/vault/wiki/concepts/provider-native-prompting.md +203 -0
- package/vault/wiki/concepts/quality-signal-sentrux.md +37 -0
- package/vault/wiki/concepts/repo-map-ranking.md +42 -0
- package/vault/wiki/concepts/result-monad-error-handling.md +47 -0
- package/vault/wiki/concepts/safety-defense-in-depth.md +83 -0
- package/vault/wiki/concepts/sandbox-os-enforcement.md +18 -0
- package/vault/wiki/concepts/selective-debate-routing.md +70 -0
- package/vault/wiki/concepts/self-evolving-harness.md +60 -0
- package/vault/wiki/concepts/sentrux-mcp-integration.md +36 -0
- package/vault/wiki/concepts/sentrux-rules-engine.md +49 -0
- package/vault/wiki/concepts/shell-pattern-compression.md +24 -0
- package/vault/wiki/concepts/skill-first-architecture.md +166 -0
- package/vault/wiki/concepts/structured-compaction.md +78 -0
- package/vault/wiki/concepts/subagent-orchestration.md +17 -0
- package/vault/wiki/concepts/subagent-worktree-isolation.md +68 -0
- package/vault/wiki/concepts/superpowers-methodology.md +78 -0
- package/vault/wiki/concepts/think-in-code.md +73 -0
- package/vault/wiki/concepts/ts-execution-layer.md +100 -0
- package/vault/wiki/concepts/typescript-strict-mode.md +37 -0
- package/vault/wiki/concepts/vcc-conversation-compaction-for-pi.md +51 -0
- package/vault/wiki/concepts/verification-drift-detection.md +19 -0
- package/vault/wiki/consensus/consensus-records.md +58 -0
- package/vault/wiki/decisions/2026-04-30-pi-lean-ctx-native.md +122 -0
- package/vault/wiki/decisions/adr-008.md +40 -0
- package/vault/wiki/decisions/adr-009.md +46 -0
- package/vault/wiki/decisions/adr-010.md +55 -0
- package/vault/wiki/decisions/adr-011.md +165 -0
- package/vault/wiki/decisions/adr-012.md +102 -0
- package/vault/wiki/decisions/adr-013.md +59 -0
- package/vault/wiki/decisions/adr-014.md +73 -0
- package/vault/wiki/decisions/adr-015.md +81 -0
- package/vault/wiki/decisions/adr-016.md +91 -0
- package/vault/wiki/decisions/adr-017.md +79 -0
- package/vault/wiki/decisions/adr-018.md +100 -0
- package/vault/wiki/decisions/adr-019.md +75 -0
- package/vault/wiki/decisions/adr-020.md +106 -0
- package/vault/wiki/decisions/adr-021.md +86 -0
- package/vault/wiki/decisions/adr-022.md +113 -0
- package/vault/wiki/decisions/adr-023.md +113 -0
- package/vault/wiki/decisions/adr-024.md +73 -0
- package/vault/wiki/decisions/adr-025.md +130 -0
- package/vault/wiki/decisions/adr-026.md +56 -0
- package/vault/wiki/decisions/colocate-wiki.md +34 -0
- package/vault/wiki/entities/Anders Hejlsberg.md +29 -0
- package/vault/wiki/entities/Anthropic.md +17 -0
- package/vault/wiki/entities/Augment Code.md +49 -0
- package/vault/wiki/entities/Bjarne Stroustrup.md +26 -0
- package/vault/wiki/entities/Bolt.new (StackBlitz).md +39 -0
- package/vault/wiki/entities/Boris Cherny.md +11 -0
- package/vault/wiki/entities/Claude Code.md +19 -0
- package/vault/wiki/entities/Dennis Ritchie.md +26 -0
- package/vault/wiki/entities/Emergent Labs.md +32 -0
- package/vault/wiki/entities/Google Cloud.md +16 -0
- package/vault/wiki/entities/Guido van Rossum.md +28 -0
- package/vault/wiki/entities/Ken Thompson.md +28 -0
- package/vault/wiki/entities/Lee et al.md +16 -0
- package/vault/wiki/entities/Linus Torvalds.md +28 -0
- package/vault/wiki/entities/Lovable (company).md +40 -0
- package/vault/wiki/entities/Martin Fowler.md +16 -0
- package/vault/wiki/entities/Meng et al.md +16 -0
- package/vault/wiki/entities/OpenAI.md +16 -0
- package/vault/wiki/entities/Rocket.new.md +38 -0
- package/vault/wiki/entities/VILA-Lab.md +15 -0
- package/vault/wiki/entities/autodev-codebase.md +18 -0
- package/vault/wiki/entities/ck-tool.md +59 -0
- package/vault/wiki/entities/codesearch.md +18 -0
- package/vault/wiki/entities/disler-indydevdan.md +33 -0
- package/vault/wiki/entities/gsd-get-shit-done.md +56 -0
- package/vault/wiki/entities/javascript-runtimes.md +48 -0
- package/vault/wiki/entities/jesse-vincent.md +38 -0
- package/vault/wiki/entities/lean-ctx.md +32 -0
- package/vault/wiki/entities/opendev.md +41 -0
- package/vault/wiki/entities/ops-codegraph-tool.md +18 -0
- package/vault/wiki/entities/pi-coding-agent.md +53 -0
- package/vault/wiki/entities/sentrux.md +54 -0
- package/vault/wiki/entities/vgrep-tool.md +57 -0
- package/vault/wiki/entities/vitest.md +41 -0
- package/vault/wiki/flows/harness-wiki-pipeline.md +204 -0
- package/vault/wiki/hot.md +932 -0
- package/vault/wiki/index.md +437 -0
- package/vault/wiki/log.md +418 -0
- package/vault/wiki/meta/dashboard.md +30 -0
- package/vault/wiki/meta/lint-report-2026-04-30.md +86 -0
- package/vault/wiki/meta/lint-report-2026-05-02.md +251 -0
- package/vault/wiki/meta/overview.canvas +43 -0
- package/vault/wiki/modules/adversarial-verification.md +57 -0
- package/vault/wiki/modules/automated-observability.md +54 -0
- package/vault/wiki/modules/bench.md +20 -0
- package/vault/wiki/modules/extensions.md +23 -0
- package/vault/wiki/modules/grounding-checkpoints.md +62 -0
- package/vault/wiki/modules/harness-implementation-plan.md +345 -0
- package/vault/wiki/modules/harness-wiki-skill-mapping.md +135 -0
- package/vault/wiki/modules/harness.md +86 -0
- package/vault/wiki/modules/persistent-memory.md +85 -0
- package/vault/wiki/modules/schema-orchestration.md +68 -0
- package/vault/wiki/modules/skills.md +27 -0
- package/vault/wiki/modules/spec-hardening.md +58 -0
- package/vault/wiki/modules/structured-planning.md +53 -0
- package/vault/wiki/modules/think-in-code-enforcement.md +153 -0
- package/vault/wiki/modules/wiki-query-interface.md +64 -0
- package/vault/wiki/overview.md +51 -0
- package/vault/wiki/questions/Research-pi-vs-claude-code-agentic-orchestration-pipeline.md +87 -0
- package/vault/wiki/questions/Research-sentrux-dev.md +123 -0
- package/vault/wiki/questions/Research-superpowers-skill-for-agentic-coding-agents.md +164 -0
- package/vault/wiki/questions/Research: Augment Code Context Engine.md +244 -0
- package/vault/wiki/questions/Research: Automating Software Engineering - Lovable, Bolt, Emergent, Rocket.md +112 -0
- package/vault/wiki/questions/Research: Claude Code State-of-the-Art Harness Improvements.md +209 -0
- package/vault/wiki/questions/Research: Codex State-of-the-Art Harness Improvements.md +99 -0
- package/vault/wiki/questions/Research: Engineering Workflows of Legendary Programmers and AI Harness Mapping.md +107 -0
- package/vault/wiki/questions/Research: Fallow Codebase Intelligence Harness Integration.md +72 -0
- package/vault/wiki/questions/Research: Gemini CLI SOTA Harness Integration.md +166 -0
- package/vault/wiki/questions/Research: GitHub Issues as Harness Spec Storage.md +188 -0
- package/vault/wiki/questions/Research: Google Antigravity Harness Integration.md +120 -0
- package/vault/wiki/questions/Research: Meta-Agent Context Drift Detection.md +236 -0
- package/vault/wiki/questions/Research: Model-Adaptive Agent Harness Design.md +95 -0
- package/vault/wiki/questions/Research: Model-Specific Prompting Guides.md +165 -0
- package/vault/wiki/questions/Research: Prompt Renderer for Multi-Model Agent Harness.md +216 -0
- package/vault/wiki/questions/Research: Skill-First Harness Architecture.md +91 -0
- package/vault/wiki/questions/Research: TypeScript Best Practices and Codebase Structure.md +88 -0
- package/vault/wiki/questions/Research: TypeScript Execution Layer for Agent Tool Calling.md +81 -0
- package/vault/wiki/questions/Research: claude-mem over Obsidian for Harness Layer.md +71 -0
- package/vault/wiki/questions/Research: claude-mem over obsidian wiki as the knowledge base for our agentic harness pipeline. think from first principles. does this replace or complement our current setup? no hard feelings about previous decisions. gimme accurate points.md +80 -0
- package/vault/wiki/questions/Research: context-mode vs lean-ctx.md +72 -0
- package/vault/wiki/questions/Research: cursor.sh Harness Innovations.md +92 -0
- package/vault/wiki/questions/Research: executor.sh Harness Integration.md +170 -0
- package/vault/wiki/questions/Research: how GSD fits into our coding harness setup.md +97 -0
- package/vault/wiki/questions/Research: how claude-mem fits into our workflow. and whether it should replace obsidian in the codebase. no hard feelings about previous actions, rethink from first principles always.md +80 -0
- package/vault/wiki/questions/Research: pi-vcc.md +113 -0
- package/vault/wiki/questions/Research: semantic code search tools.md +69 -0
- package/vault/wiki/questions/Research: vcc extension for pi coding agent.md +73 -0
- package/vault/wiki/questions/how-to-enable-semantic-code-search-now.md +111 -0
- package/vault/wiki/questions/mvp-implementation-blueprint.md +552 -0
- package/vault/wiki/questions/research-agent-first-codebase-exploration.md +199 -0
- package/vault/wiki/questions/research-agentic-coding-harness-latest-papers.md +142 -0
- package/vault/wiki/questions/research-gitingest-gitreverse-integration.md +100 -0
- package/vault/wiki/questions/research-wozcode-token-reduction.md +67 -0
- package/vault/wiki/questions/resolved-context-pruning-inplace-vs-restart.md +95 -0
- package/vault/wiki/questions/resolved-context-window-economics.md +167 -0
- package/vault/wiki/questions/resolved-imad-debate-gating-transfer.md +126 -0
- package/vault/wiki/questions/resolved-mcp-tool-preference.md +112 -0
- package/vault/wiki/questions/resolved-small-model-meta-agents.md +107 -0
- package/vault/wiki/questions/resolved-treesitter-dynamic-languages.md +95 -0
- package/vault/wiki/sources/Auggie Context MCP Server.md +63 -0
- package/vault/wiki/sources/Augment Code Codacy AI Giants.md +61 -0
- package/vault/wiki/sources/Augment Code MCP SiliconAngle.md +49 -0
- package/vault/wiki/sources/Augment Code WorkOS ERC 2025.md +55 -0
- package/vault/wiki/sources/Augment Context Engine Official.md +71 -0
- package/vault/wiki/sources/Augment SWE-bench Agent GitHub.md +74 -0
- package/vault/wiki/sources/Augment SWE-bench Pro Blog.md +58 -0
- package/vault/wiki/sources/Source: AgentBus Jinja2 Prompt Pipelines.md +75 -0
- package/vault/wiki/sources/Source: Arxiv /342/200/224 Don't Break the Cache.md" +85 -0
- package/vault/wiki/sources/Source: Augment - Harness Engineering for AI Coding Agents.md +58 -0
- package/vault/wiki/sources/Source: Blake Crosley Agent Architecture Guide.md +100 -0
- package/vault/wiki/sources/Source: Bolt.new Architecture & Case Study.md +75 -0
- package/vault/wiki/sources/Source: Build-Time Prompt Compilation Architecture.md +107 -0
- package/vault/wiki/sources/Source: Claude API Agent Skills Overview.md +70 -0
- package/vault/wiki/sources/Source: Gemini CLI Changelogs.md +88 -0
- package/vault/wiki/sources/Source: Google Blog - Gemini CLI Announcement.md +57 -0
- package/vault/wiki/sources/Source: Google Gemini CLI Architecture Docs.md +53 -0
- package/vault/wiki/sources/Source: LangChain - Anatomy of Agent Harness.md +65 -0
- package/vault/wiki/sources/Source: Lovable Architecture & Clone Analysis.md +83 -0
- package/vault/wiki/sources/Source: Martin Fowler - Harness Engineering.md +70 -0
- package/vault/wiki/sources/Source: OpenAI Harness Engineering Five Principles.md +58 -0
- package/vault/wiki/sources/Source: OpenAI Harness Engineering /342/200/224 0 Lines of Human Code.md" +101 -0
- package/vault/wiki/sources/Source: OpenDev /342/200/224 Building AI Coding Agents for the Terminal.md" +100 -0
- package/vault/wiki/sources/Source: Render AI Coding Agents Benchmark 2025.md +53 -0
- package/vault/wiki/sources/Source: Rocket.new /342/200/224 Vibe Solutioning Platform.md" +70 -0
- package/vault/wiki/sources/Source: SwirlAI Agent Skills Progressive Disclosure.md +71 -0
- package/vault/wiki/sources/Source: TianPan Prompt Caching Architecture.md +89 -0
- package/vault/wiki/sources/Source: Vercel Labs agent-browser.md +155 -0
- package/vault/wiki/sources/Source: browser-harness CDP Harness.md +126 -0
- package/vault/wiki/sources/agent-drift-academic-paper.md +79 -0
- package/vault/wiki/sources/aider-repomap-tree-sitter.md +42 -0
- package/vault/wiki/sources/anthropic-compaction-api.md +58 -0
- package/vault/wiki/sources/anthropic-effective-harnesses.md +42 -0
- package/vault/wiki/sources/anthropic-prompt-best-practices.md +100 -0
- package/vault/wiki/sources/anthropic2026-harness-design.md +63 -0
- package/vault/wiki/sources/barrel-files-tkdodo.md +38 -0
- package/vault/wiki/sources/birth-of-unix-kernighan-interview.md +57 -0
- package/vault/wiki/sources/bockeler2026-harness-engineering.md +69 -0
- package/vault/wiki/sources/cast-code-chunking-paper.md +50 -0
- package/vault/wiki/sources/ck-semantic-search.md +78 -0
- package/vault/wiki/sources/claude-code-architecture-karaxai-2026.md +71 -0
- package/vault/wiki/sources/claude-code-architecture-qubytes-2026.md +50 -0
- package/vault/wiki/sources/claude-code-architecture-vila-lab-2026.md +64 -0
- package/vault/wiki/sources/claude-code-security-architecture-penligent-2026.md +70 -0
- package/vault/wiki/sources/claude-context-editing-docs.md +13 -0
- package/vault/wiki/sources/cloudflare-codemode.md +63 -0
- package/vault/wiki/sources/code-chunk-library-supermemory.md +63 -0
- package/vault/wiki/sources/codeact-apple-2024.md +62 -0
- package/vault/wiki/sources/codex-dsc-rfc-8573.md +41 -0
- package/vault/wiki/sources/codex-open-source-agent-2026.md +110 -0
- package/vault/wiki/sources/coir-code-retrieval-benchmark.md +51 -0
- package/vault/wiki/sources/colinmcnamara-context-optimization-codemode.md +48 -0
- package/vault/wiki/sources/context-folding-paper.md +61 -0
- package/vault/wiki/sources/context-mode-website.md +63 -0
- package/vault/wiki/sources/cursor-agent-best-practices-2026.md +62 -0
- package/vault/wiki/sources/cursor-fork-29b-2025.md +50 -0
- package/vault/wiki/sources/cursor-harness-april-2026.md +76 -0
- package/vault/wiki/sources/cursor-instant-apply-2024.md +45 -0
- package/vault/wiki/sources/cursor-shadow-workspace-2024.md +52 -0
- package/vault/wiki/sources/cursor-shipped-coding-agent-2026.md +53 -0
- package/vault/wiki/sources/cursor-vs-antigravity-2026.md +51 -0
- package/vault/wiki/sources/disler-pi-vs-claude-code.md +69 -0
- package/vault/wiki/sources/distill-deterministic-context-compression.md +53 -0
- package/vault/wiki/sources/embedding-models-benchmark-supermemory-2025.md +48 -0
- package/vault/wiki/sources/executor-rhyssullivan.md +122 -0
- package/vault/wiki/sources/fallow-rs-codebase-intelligence.md +125 -0
- package/vault/wiki/sources/fan2025-imad.md +60 -0
- package/vault/wiki/sources/forgecode-gpt5-agent-improvements.md +63 -0
- package/vault/wiki/sources/gemini-3-prompting-guide.md +78 -0
- package/vault/wiki/sources/gh-cli-sub-issue-rfc.md +50 -0
- package/vault/wiki/sources/gh-sub-issue-extension.md +72 -0
- package/vault/wiki/sources/github-fork-issues-discussion.md +44 -0
- package/vault/wiki/sources/github-issue-dependencies-docs.md +49 -0
- package/vault/wiki/sources/github-sub-issues-docs.md +51 -0
- package/vault/wiki/sources/gitingest.md +91 -0
- package/vault/wiki/sources/gitreverse.md +63 -0
- package/vault/wiki/sources/google-antigravity-official-blog.md +47 -0
- package/vault/wiki/sources/google-antigravity-wikipedia.md +53 -0
- package/vault/wiki/sources/gsd-codecentric-deep-dive.md +57 -0
- package/vault/wiki/sources/gsd-github-repo.md +51 -0
- package/vault/wiki/sources/gsd-hn-discussion.md +59 -0
- package/vault/wiki/sources/guido-python-design-philosophy.md +56 -0
- package/vault/wiki/sources/hejlsberg-7-learnings.md +48 -0
- package/vault/wiki/sources/ironclaw-drift-monitor.md +80 -0
- package/vault/wiki/sources/langsight-loop-detection.md +80 -0
- package/vault/wiki/sources/leanctx-website.md +69 -0
- package/vault/wiki/sources/lee2026-meta-harness.md +59 -0
- package/vault/wiki/sources/linux-kernel-coding-workflow.md +50 -0
- package/vault/wiki/sources/lou2026-autoharness.md +53 -0
- package/vault/wiki/sources/martin-fowler-harness-engineering.md +73 -0
- package/vault/wiki/sources/mcp-architecture-docs.md +13 -0
- package/vault/wiki/sources/meng2026-agent-harness-survey.md +79 -0
- package/vault/wiki/sources/mindstudio-four-agent-types.md +68 -0
- package/vault/wiki/sources/ms-chat-history-management.md +13 -0
- package/vault/wiki/sources/openai-prompt-guidance.md +104 -0
- package/vault/wiki/sources/openclaw-session-pruning.md +13 -0
- package/vault/wiki/sources/opencode-dcp.md +13 -0
- package/vault/wiki/sources/opendev-arxiv-2603.05344v1.md +79 -0
- package/vault/wiki/sources/openhands-platform.md +39 -0
- package/vault/wiki/sources/oss-guide-codebase-exploration.md +53 -0
- package/vault/wiki/sources/pi-compaction-extensions-ecosystem.md +102 -0
- package/vault/wiki/sources/pi-context-prune-github-repo.md +38 -0
- package/vault/wiki/sources/pi-mono-compaction-docs.md +38 -0
- package/vault/wiki/sources/pi-omni-compact-github-repo.md +50 -0
- package/vault/wiki/sources/pi-rtk-optimizer-github-repo.md +45 -0
- package/vault/wiki/sources/pi-vcc-github-repo.md +69 -0
- package/vault/wiki/sources/pi-vscode-marketplace.md +41 -0
- package/vault/wiki/sources/pi-vscode-model-provider-marketplace.md +39 -0
- package/vault/wiki/sources/py-tree-sitter.md +13 -0
- package/vault/wiki/sources/sentrux-dev-landing.md +40 -0
- package/vault/wiki/sources/sentrux-docs-pro-architecture.md +75 -0
- package/vault/wiki/sources/sentrux-docs-quality-signal.md +46 -0
- package/vault/wiki/sources/sentrux-docs-root-cause-metrics.md +57 -0
- package/vault/wiki/sources/sentrux-docs-rules-engine.md +58 -0
- package/vault/wiki/sources/sentrux-github-repo.md +56 -0
- package/vault/wiki/sources/superpowers-github-repo.md +56 -0
- package/vault/wiki/sources/superpowers-release-blog.md +54 -0
- package/vault/wiki/sources/superpowers-termdock-analysis.md +45 -0
- package/vault/wiki/sources/swe-agent-aci.md +42 -0
- package/vault/wiki/sources/swe-bench.md +45 -0
- package/vault/wiki/sources/swe-pruner-context-pruning.md +13 -0
- package/vault/wiki/sources/think-in-code-blog.md +48 -0
- package/vault/wiki/sources/tree-sitter-docs.md +13 -0
- package/vault/wiki/sources/ts-best-practices-2025-devto.md +42 -0
- package/vault/wiki/sources/ts-folder-structure-mingyang.md +58 -0
- package/vault/wiki/sources/ts-monorepo-koerselman.md +44 -0
- package/vault/wiki/sources/ts-result-error-handling-kkalamarski.md +52 -0
- package/vault/wiki/sources/ts-runtimes-comparison-betterstack.md +42 -0
- package/vault/wiki/sources/ts-strict-mode-rishikc.md +43 -0
- package/vault/wiki/sources/unix-philosophy.md +48 -0
- package/vault/wiki/sources/vectara-chunking-vs-embedding-naacl2025.md +39 -0
- package/vault/wiki/sources/vectara-guardian-agents.md +79 -0
- package/vault/wiki/sources/vgrep-semantic-search.md +76 -0
- package/vault/wiki/sources/vitest-official.md +41 -0
- package/vault/wiki/sources/vscode-pi-community-extension.md +40 -0
- package/vault/wiki/sources/wozcode.md +79 -0
- package/.agents/skills/compress/SKILL.md +0 -111
- package/.agents/skills/compress/scripts/__init__.py +0 -9
- package/.agents/skills/compress/scripts/__main__.py +0 -3
- package/.agents/skills/compress/scripts/benchmark.py +0 -78
- package/.agents/skills/compress/scripts/cli.py +0 -73
- package/.agents/skills/compress/scripts/compress.py +0 -227
- package/.agents/skills/compress/scripts/detect.py +0 -121
- package/.agents/skills/compress/scripts/validate.py +0 -189
- package/.agents/skills/emil-design-eng/SKILL.md +0 -679
- package/.agents/skills/lean-ctx/SKILL.md +0 -149
- package/.agents/skills/lean-ctx/scripts/install.sh +0 -95
- package/.agents/skills/scrapling-official/LICENSE.txt +0 -28
- package/.agents/skills/scrapling-official/SKILL.md +0 -390
- package/.agents/skills/scrapling-official/examples/01_fetcher_session.py +0 -26
- package/.agents/skills/scrapling-official/examples/02_dynamic_session.py +0 -26
- package/.agents/skills/scrapling-official/examples/03_stealthy_session.py +0 -26
- package/.agents/skills/scrapling-official/examples/04_spider.py +0 -58
- package/.agents/skills/scrapling-official/examples/README.md +0 -45
- package/.agents/skills/scrapling-official/references/fetching/choosing.md +0 -78
- package/.agents/skills/scrapling-official/references/fetching/dynamic.md +0 -352
- package/.agents/skills/scrapling-official/references/fetching/static.md +0 -432
- package/.agents/skills/scrapling-official/references/fetching/stealthy.md +0 -255
- package/.agents/skills/scrapling-official/references/mcp-server.md +0 -214
- package/.agents/skills/scrapling-official/references/migrating_from_beautifulsoup.md +0 -86
- package/.agents/skills/scrapling-official/references/parsing/adaptive.md +0 -212
- package/.agents/skills/scrapling-official/references/parsing/main_classes.md +0 -586
- package/.agents/skills/scrapling-official/references/parsing/selection.md +0 -494
- package/.agents/skills/scrapling-official/references/spiders/advanced.md +0 -344
- package/.agents/skills/scrapling-official/references/spiders/architecture.md +0 -94
- package/.agents/skills/scrapling-official/references/spiders/getting-started.md +0 -164
- package/.agents/skills/scrapling-official/references/spiders/proxy-blocking.md +0 -235
- package/.agents/skills/scrapling-official/references/spiders/requests-responses.md +0 -196
- package/.agents/skills/scrapling-official/references/spiders/sessions.md +0 -205
- package/PLAN.md +0 -11
- package/extensions/lean-ctx-enforce.ts +0 -166
- package/skills-lock.json +0 -35
- package/wiki/README.md +0 -19
- package/wiki/decisions/0001-establish-project-wiki-and-decision-record-format.md +0 -25
- package/wiki/decisions/0002-add-project-banner-to-readme.md +0 -26
- package/wiki/decisions/0003-remove-redundant-readme-title-heading.md +0 -26
- package/wiki/decisions/0004-publish-package-to-npm-as-ultimate-pi.md +0 -26
- package/wiki/decisions/0005-automate-npm-publish-with-github-actions.md +0 -27
- package/wiki/decisions/0006-switch-to-npm-trusted-publishing.md +0 -26
- package/wiki/decisions/0007-use-absolute-banner-url-for-npm-readme-rendering.md +0 -26
- package/wiki/decisions/0008-rename-banner-asset-for-cache-busting.md +0 -26
- package/wiki/decisions/0009-force-oidc-path-by-clearing-node-auth-token-in-publish-step.md +0 -25
- package/wiki/decisions/0010-simplify-setup-node-for-npm-trusted-publishing.md +0 -26
- package/wiki/decisions/0011-add-noop-workflow-change-to-force-fresh-publish-run.md +0 -25
- package/wiki/decisions/0012-align-workflow-runtime-with-npm-trusted-publishing-requirements.md +0 -26
- package/wiki/decisions/0013-add-package-repository-url-for-provenance-validation.md +0 -25
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
---
|
|
2
|
+
type: meta
|
|
3
|
+
title: "Lint Report 2026-05-02"
|
|
4
|
+
created: 2026-05-02
|
|
5
|
+
updated: 2026-05-02
|
|
6
|
+
tags: [meta, lint]
|
|
7
|
+
status: complete
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Lint Report: 2026-05-02
|
|
11
|
+
|
|
12
|
+
## Summary
|
|
13
|
+
- Pages scanned: 221 → 250 (after stub creation)
|
|
14
|
+
- Issues found: 287
|
|
15
|
+
- Auto-fixed: ~220 (6 renames + 167 frontmatter + 28 stubs + 8 link corrections + consensus/rename + de-link placeholders)
|
|
16
|
+
- Remaining: 1 false positive (bash code block artifact in [[agent-search-enforcement]])
|
|
17
|
+
|
|
18
|
+
## After-Fix State
|
|
19
|
+
|
|
20
|
+
| Metric | Before | After |
|
|
21
|
+
|--------|--------|-------|
|
|
22
|
+
| Dead links | 64 | 1 (false positive) |
|
|
23
|
+
| Orphans | 9 | 7 (templates + new stubs) |
|
|
24
|
+
| Stale index entries | 5 | 0 |
|
|
25
|
+
| No frontmatter | 2 | 0 |
|
|
26
|
+
| Frontmatter gaps | 169 | 0 |
|
|
27
|
+
| Filename duplicates | 1 | 0 (consensus/index.md renamed) |
|
|
28
|
+
|
|
29
|
+
### Fixes applied
|
|
30
|
+
1. Renamed 6 Research files to `Research: ...` convention
|
|
31
|
+
2. Added frontmatter to [[index]] and [[log]]
|
|
32
|
+
3. Batch-added `tags`, `status`, `created`, `updated` to 167 pages
|
|
33
|
+
4. Created 9 entity stubs: Anthropic, OpenAI, Google Cloud, Claude Code, VILA-Lab, Boris Cherny, Martin Fowler, Meng et al, Lee et al
|
|
34
|
+
5. Created 8 concept stubs: agentic-search-no-embeddings, progressive-skill-disclosure, additive-config-hierarchy, permission-subsystem, sandbox-os-enforcement, context-compression-techniques, subagent-orchestration, context-engineering
|
|
35
|
+
6. Created 8 source stubs: claude-context-editing-docs, opencode-dcp, ms-chat-history-management, openclaw-session-pruning, mcp-architecture-docs, swe-pruner-context-pruning, py-tree-sitter, tree-sitter-docs
|
|
36
|
+
7. Created 2 additional concept stubs: consensus-debate-flow, Meta-Harness
|
|
37
|
+
8. Corrected 3 wrong-target links (agent-drift-paper→agent-drift-academic-paper, Source: Gemini CLI Architecture Docs→Source: Google Gemini CLI Architecture Docs, prompt-renderer→Prompt Renderer)
|
|
38
|
+
9. De-linked 5 placeholder wikilinks (new-adr, old-adr, wiki/page, page-refs, ...)
|
|
39
|
+
10. Renamed consensus/index.md → consensus/consensus-records.md (fixes filename collision)
|
|
40
|
+
11. Updated dashboard with missing status + bumped date
|
|
41
|
+
|
|
42
|
+
### Type/Status convention
|
|
43
|
+
Non-standard types (`synthesis`, `resolution`, `analysis`, `overview`) and statuses (`resolved`, `stable`, `complete`) are now accepted as valid conventions. They capture useful distinctions and are used consistently.
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Original Findings (pre-fix)
|
|
48
|
+
|
|
49
|
+
## Filename Uniqueness
|
|
50
|
+
|
|
51
|
+
- **1 duplicate**: `index.md` at both `wiki/index.md` and `wiki/consensus/index.md`. Wikilinks to `[[index]]` always resolve to `wiki/index.md`, making `wiki/consensus/index.md` unreachable via wikilinks.
|
|
52
|
+
|
|
53
|
+
## Dead Links (64)
|
|
54
|
+
|
|
55
|
+
### Research: prefix mismatch (6 pages — filenames don't match links)
|
|
56
|
+
These files use `Research ` (space) or `Research-` (hyphen) in filename but are linked as `Research:` (colon):
|
|
57
|
+
- **[[wiki/questions/Research Augment Code Context Engine]]** → linked as `[[Research: Augment Code Context Engine]]` in [[index]], [[log]], [[hot]]
|
|
58
|
+
- **[[wiki/questions/Research Claude Code State-of-the-Art Harness Improvements]]** → linked as `[[Research: Claude Code...]]` in [[index]], [[log]], [[hot]]
|
|
59
|
+
- **[[wiki/questions/Research Codex State-of-the-Art Harness Improvements]]** → linked as `[[Research: Codex...]]` in [[index]], [[log]], [[hot]]
|
|
60
|
+
- **[[wiki/questions/Research Google Antigravity Harness Integration]]** → linked as `[[Research: Google Antigravity...]]` in [[index]], [[log]], [[hot]]
|
|
61
|
+
- **[[wiki/questions/Research Model-Specific Prompting Guides]]** → linked as `[[Research: Model-Specific Prompting...]]` in [[index]], [[log]], [[hot]]
|
|
62
|
+
- **[[wiki/questions/Research-TypeScript-Best-Practices-and-Codebase-Structure]]** → linked as `[[Research: TypeScript Best Practices...]]` in [[index]], [[log]], [[hot]]
|
|
63
|
+
|
|
64
|
+
**Fix**: Rename files to use `Research: ` prefix with colon + spaces (matching the convention in 11 other research files). **DONE** — all 6 files renamed. Dead links in index/log/hot now resolved. Index stale entries → 0.
|
|
65
|
+
|
|
66
|
+
### Entity pages that don't exist (used as wikilinks)
|
|
67
|
+
- `[[Anthropic]]` — referenced in [[lint-report-2026-04-30]], [[Research Model-Specific Prompting Guides]]
|
|
68
|
+
- `[[OpenAI]]` — referenced in [[Research Model-Specific Prompting Guides]]
|
|
69
|
+
- `[[Google Cloud]]` — referenced in [[Research Model-Specific Prompting Guides]]
|
|
70
|
+
- `[[Claude Code]]` — referenced in [[Research Claude Code State-of-the-Art Harness Improvements]]
|
|
71
|
+
- `[[VILA-Lab]]` — referenced in [[Research Claude Code State-of-the-Art Harness Improvements]]
|
|
72
|
+
- `[[Boris Cherny]]` — referenced in [[Research Claude Code State-of-the-Art Harness Improvements]]
|
|
73
|
+
- `[[Martin Fowler / Thoughtworks]]` — referenced in [[lint-report-2026-04-30]]
|
|
74
|
+
- `[[Meng et al.]]` — referenced in [[lint-report-2026-04-30]]
|
|
75
|
+
- `[[Lee et al. (Stanford/Together AI)]]` — referenced in [[lint-report-2026-04-30]]
|
|
76
|
+
|
|
77
|
+
**Fix**: Either create entity stubs or remove these wikilinks (replace with plain text).
|
|
78
|
+
|
|
79
|
+
### Conceptual pages that don't exist
|
|
80
|
+
- `[[context-engineering]]` in [[lint-report-2026-04-30]]
|
|
81
|
+
- `[[agentic-search-no-embeddings]]` in [[Research Claude Code State-of-the-Art Harness Improvements]]
|
|
82
|
+
- `[[permission-subsystem]]` in [[Research Claude Code State-of-the-Art Harness Improvements]]
|
|
83
|
+
- `[[sandbox-os-enforcement]]` in [[Research Claude Code State-of-the-Art Harness Improvements]]
|
|
84
|
+
- `[[additive-config-hierarchy]]` in [[Research Claude Code State-of-the-Art Harness Improvements]]
|
|
85
|
+
- `[[progressive-skill-disclosure]]` in [[Research Claude Code State-of-the-Art Harness Improvements]]
|
|
86
|
+
- `[[prompt-renderer]]` in [[Research Model-Specific Prompting Guides]] — note: [[Prompt Renderer]] exists but lowercase
|
|
87
|
+
- `[[context-compression-techniques]]` in [[Research: Gemini CLI SOTA Harness Integration]]
|
|
88
|
+
- `[[subagent-orchestration]]` in [[Research: Gemini CLI SOTA Harness Integration]]
|
|
89
|
+
- `[[Source: Gemini CLI Architecture Docs]]` in [[Research: Gemini CLI SOTA Harness Integration]] — note: [[Source: Google Gemini CLI Architecture Docs]] exists
|
|
90
|
+
- `[[anthropic-context-engineering]]` in [[Research: Meta-Agent Context Drift Detection]]
|
|
91
|
+
- `[[swe-pruner-context-pruning]]` in [[Research: Meta-Agent Context Drift Detection]]
|
|
92
|
+
- `[[claude-context-editing-docs]]` in [[resolved-context-pruning-inplace-vs-restart]]
|
|
93
|
+
- `[[opencode-dcp]]` in [[resolved-context-pruning-inplace-vs-restart]]
|
|
94
|
+
- `[[ms-chat-history-management]]` in [[resolved-context-pruning-inplace-vs-restart]]
|
|
95
|
+
- `[[openclaw-session-pruning]]` in [[resolved-context-pruning-inplace-vs-restart]]
|
|
96
|
+
- `[[mcp-architecture-docs]]` in [[resolved-mcp-tool-preference]]
|
|
97
|
+
- `[[agent-drift-paper]]` in [[resolved-small-model-meta-agents]] — note: [[agent-drift-academic-paper]] exists
|
|
98
|
+
|
|
99
|
+
**Fix**: Create concept stubs or correct to existing pages.
|
|
100
|
+
|
|
101
|
+
### Template/flow placeholder links
|
|
102
|
+
- `[[new-adr]]` in [[harness-wiki-pipeline]], [[lint-report-2026-04-30]]
|
|
103
|
+
- `[[old-adr]]` in [[harness-wiki-pipeline]], [[lint-report-2026-04-30]]
|
|
104
|
+
- `[[consensus-debate-flow]]` in [[lint-report-2026-04-30]]
|
|
105
|
+
- `[[wiki/page]]` in [[pi-messenger-analysis]], [[lint-report-2026-04-30]]
|
|
106
|
+
- `[[page-refs]]` in [[consensus/index]]
|
|
107
|
+
|
|
108
|
+
### Regex artifact
|
|
109
|
+
- `[["$*" =~ [[:space:]]` — regex leaked into page body in [[agent-search-enforcement]], [[lint-report-2026-04-30]]
|
|
110
|
+
|
|
111
|
+
## Orphan Pages (9)
|
|
112
|
+
|
|
113
|
+
### Templates (expected — by design)
|
|
114
|
+
- [[_templates/decision]]
|
|
115
|
+
- [[_templates/flow]]
|
|
116
|
+
- [[_templates/module]]
|
|
117
|
+
|
|
118
|
+
### Research pages (caused by dead-link renaming issue)
|
|
119
|
+
These are de-facto orphans because their inbound links use the wrong filename format:
|
|
120
|
+
- [[wiki/questions/Research Augment Code Context Engine]]
|
|
121
|
+
- [[wiki/questions/Research Claude Code State-of-the-Art Harness Improvements]]
|
|
122
|
+
- [[wiki/questions/Research Codex State-of-the-Art Harness Improvements]]
|
|
123
|
+
- [[wiki/questions/Research Google Antigravity Harness Integration]]
|
|
124
|
+
- [[wiki/questions/Research Model-Specific Prompting Guides]]
|
|
125
|
+
- [[wiki/questions/Research-TypeScript-Best-Practices-and-Codebase-Structure]]
|
|
126
|
+
|
|
127
|
+
**Fix**: Rename files to `Research: ...` format. Orphans will resolve automatically.
|
|
128
|
+
|
|
129
|
+
## Missing Pages (entities mentioned without a page)
|
|
130
|
+
|
|
131
|
+
- **Anthropic** — referenced in 2 pages. Suggest: create entity stub.
|
|
132
|
+
- **OpenAI** — referenced in 1 page. Suggest: create entity stub.
|
|
133
|
+
- **Google Cloud** — referenced in 1 page. Suggest: create entity stub.
|
|
134
|
+
- **Claude Code** — referenced in 1 page. Suggest: create entity stub linked to [[claude-code-architecture-vila-lab-2026]].
|
|
135
|
+
- **VILA-Lab** — referenced in 1 page.
|
|
136
|
+
- **Boris Cherny** — referenced in 1 page.
|
|
137
|
+
- **Martin Fowler / Thoughtworks** — referenced in old lint report.
|
|
138
|
+
- **Meng et al.** — referenced in old lint report.
|
|
139
|
+
- **Lee et al. (Stanford/Together AI)** — referenced in old lint report.
|
|
140
|
+
- **Meta-Harness** — referenced in old lint report.
|
|
141
|
+
|
|
142
|
+
## Frontmatter Gaps (169)
|
|
143
|
+
|
|
144
|
+
### No frontmatter at all (2 pages — critical)
|
|
145
|
+
- [[index]] — `wiki/index.md`: missing type, status, created, updated, tags. Index page has no YAML frontmatter block.
|
|
146
|
+
- [[log]] — `wiki/log.md`: missing type, status, created, updated, tags. Operations log has no YAML frontmatter block.
|
|
147
|
+
|
|
148
|
+
### Missing `type` field
|
|
149
|
+
Only 2 pages lack the `type` key entirely. All other pages have it, including pages with non-standard types (see Type conventions below).
|
|
150
|
+
|
|
151
|
+
### Missing `status` field (57 pages)
|
|
152
|
+
Mostly source pages ingested during autoresearch without status assignment. Common for new pages. See full list in Appendix.
|
|
153
|
+
|
|
154
|
+
### Missing `created` field (58 pages)
|
|
155
|
+
Same pages as missing status — ingested during autoresearch without date metadata.
|
|
156
|
+
|
|
157
|
+
### Missing `updated` field (82 pages)
|
|
158
|
+
Includes pages that have `created` but no `updated`, plus pages with neither.
|
|
159
|
+
|
|
160
|
+
### Missing `tags` field (169 pages)
|
|
161
|
+
Most common gap. Nearly all source pages, many concept pages, and most question pages lack tags. Tags help with Dataview queries and discovery.
|
|
162
|
+
|
|
163
|
+
### Specific notable gaps
|
|
164
|
+
- [[barrel-files]]: missing status, created, updated, tags
|
|
165
|
+
- [[typescript-strict-mode]]: missing status, created, updated, tags
|
|
166
|
+
- [[monorepo-architecture]]: missing status, created, updated, tags
|
|
167
|
+
- [[result-monad-error-handling]]: missing status, created, updated, tags
|
|
168
|
+
- [[Augment Code]]: missing status, updated, tags
|
|
169
|
+
- [[javascript-runtimes]]: missing status, created, updated, tags
|
|
170
|
+
- [[vitest]]: missing status, created, updated, tags
|
|
171
|
+
- All `Source:` prefixed source pages: missing status, created, updated, tags
|
|
172
|
+
|
|
173
|
+
## Type Field Conventions (29 non-standard)
|
|
174
|
+
|
|
175
|
+
The following types are used but not in the standard set (`concept`, `source`, `entity`, `module`, `flow`, `decision`, `meta`, `index`, `fold`, `question`):
|
|
176
|
+
|
|
177
|
+
| Non-standard type | Count | Used on |
|
|
178
|
+
|---|---|---|
|
|
179
|
+
| `synthesis` | 23 | Research synthesis pages in `wiki/questions/` |
|
|
180
|
+
| `resolution` | 6 | Resolved question pages |
|
|
181
|
+
| `analysis` | 1 | [[pi-messenger-analysis]] |
|
|
182
|
+
| `overview` | 1 | [[overview]] |
|
|
183
|
+
|
|
184
|
+
**Recommendation**: Either (a) add `synthesis`, `resolution`, `analysis`, `overview` to the official type list (they capture useful distinctions), or (b) reclassify: synthesis pages as `type: question`, resolution pages as `type: question`, pi-messenger-analysis as `type: concept`, overview as `type: meta`.
|
|
185
|
+
|
|
186
|
+
## Status Field Conventions (12 non-standard)
|
|
187
|
+
|
|
188
|
+
| Non-standard status | Count | Used on |
|
|
189
|
+
|---|---|---|
|
|
190
|
+
| `resolved` | 6 | Resolved question pages |
|
|
191
|
+
| `stable` | 3 | [[gemini-cli-architecture]], [[harness-engineering-first-principles]], [[hybrid-code-search]] |
|
|
192
|
+
| `complete` | 3 | [[lint-report-2026-04-30]], [[research-gitingest-gitreverse-integration]], [[Research: Model-Adaptive Agent Harness Design]] |
|
|
193
|
+
|
|
194
|
+
**Recommendation**: Either (a) add `resolved`, `stable`, `complete` to the status vocabulary, or (b) map: resolved→`done`, stable→`active`, complete→`done`.
|
|
195
|
+
|
|
196
|
+
## Stale Index Entries (5)
|
|
197
|
+
|
|
198
|
+
In [[index]], these wikilinks point to pages that don't exist (due to filename mismatch):
|
|
199
|
+
- `[[Research: Augment Code Context Engine]]` — file is `Research Augment Code Context Engine.md`
|
|
200
|
+
- `[[Research: Google Antigravity Harness Integration]]` — file is `Research Google Antigravity Harness Integration.md`
|
|
201
|
+
- `[[Research: Claude Code State-of-the-Art Harness Improvements]]` — file is `Research Claude Code State-of-the-Art Harness Improvements.md`
|
|
202
|
+
- `[[Research: Codex State-of-the-Art Harness Improvements]]` — file is `Research Codex State-of-the-Art Harness Improvements.md`
|
|
203
|
+
- `[[Research: TypeScript Best Practices and Codebase Structure]]` — file is `Research-TypeScript-Best-Practices-and-Codebase-Structure.md`
|
|
204
|
+
|
|
205
|
+
All resolve automatically when files are renamed to use `Research: ` prefix.
|
|
206
|
+
|
|
207
|
+
Also, [[index]] references `[[consensus/index]]` but this is unreachable (filename collision with wiki/index.md).
|
|
208
|
+
|
|
209
|
+
## Dashboard
|
|
210
|
+
|
|
211
|
+
See [[dashboard]] for current Dataview queries. Status: existing dashboard is up-to-date with all query templates from the wiki-lint spec.
|
|
212
|
+
|
|
213
|
+
## Appendix: Full Frontmatter Gap Table
|
|
214
|
+
|
|
215
|
+
### Pages with no frontmatter
|
|
216
|
+
| Page | Missing fields |
|
|
217
|
+
|------|---------------|
|
|
218
|
+
| [[index]] | type, status, created, updated, tags |
|
|
219
|
+
| [[log]] | type, status, created, updated, tags |
|
|
220
|
+
|
|
221
|
+
### Pages missing specific fields (non-exhaustive, grouped by category)
|
|
222
|
+
|
|
223
|
+
**Concepts missing `tags`** (40+):
|
|
224
|
+
[[agent-artifacts-verifiable-deliverables]], [[agent-codebase-interface]], [[agent-loop-detection-patterns]], [[agent-search-enforcement]], [[agent-skills-pattern]], [[agentic-harness-context-enforcement]], [[antigravity-agent-first-architecture]], [[ast-truncation]], [[browser-subagent-visual-verification]], [[codebase-intelligence-ecosystem-comparison]], [[codebase-intelligence-harness-integration]], [[codebase-to-context-ingestion]], [[content-addressed-spec-identity]], [[context-anxiety]], [[context-drift-in-agents]], [[execution-feedback-loop]], [[feedforward-feedback-harness]], [[fork-safe-spec-storage]], [[fuzzy-edit-matching]], [[gemini-cli-architecture]], [[generator-evaluator-architecture]], [[guardian-agent-pattern]], [[harness-engineering-first-principles]], [[harness-h-formalism]], [[hybrid-code-search]], [[inline-post-edit-validation]], [[mcp-tool-routing]], [[meta-agent-context-pruning]], [[model-routing-agents]], [[policy-engine-pattern]], [[progressive-disclosure-agents]], [[repo-map-ranking]], [[selective-debate-routing]], [[self-evolving-harness]], [[think-in-code]], [[ts-execution-layer]], [[Build-Time Prompt Compilation]], [[Prompt Renderer]]
|
|
225
|
+
|
|
226
|
+
**Entities missing `tags`**: [[ck-tool]], [[vgrep-tool]]
|
|
227
|
+
|
|
228
|
+
**Sources missing `status`, `created`, `updated`, `tags`** (60+):
|
|
229
|
+
Most source pages ingested during quick-turn research cycles. Notable batches:
|
|
230
|
+
- All 4 Augment source pages ([[Augment Context Engine Official]], etc.)
|
|
231
|
+
- All 8 "Source:" prefixed pages ([[Source: Google Gemini CLI Architecture Docs]], etc.)
|
|
232
|
+
- All 7 Cursor source pages ([[cursor-shadow-workspace-2024]], etc.)
|
|
233
|
+
- All 4 Claude Code source pages ([[claude-code-architecture-vila-lab-2026]], etc.)
|
|
234
|
+
- All 6 "ts-*" TypeScript source pages
|
|
235
|
+
- All 5 "github-*" source pages
|
|
236
|
+
- Miscellaneous: [[codeact-apple-2024]], [[cloudflare-codemode]], [[executor-rhyssullivan]], [[fallow-rs-codebase-intelligence]], [[coir-code-retrieval-benchmark]], etc.
|
|
237
|
+
|
|
238
|
+
**Questions missing `tags`** (all 19 question pages):
|
|
239
|
+
All research synthesis and resolved question pages in `wiki/questions/` are missing the `tags` field.
|
|
240
|
+
|
|
241
|
+
---
|
|
242
|
+
|
|
243
|
+
## Recommended Fix Order
|
|
244
|
+
|
|
245
|
+
1. **Rename 6 research files** to `Research: ...` format (fixes 5 stale index entries, 24+ dead links, 6 orphans)
|
|
246
|
+
2. **Add frontmatter to `index.md` and `log.md`** (they should have `type: meta`, `status: active`, dates, tags)
|
|
247
|
+
3. **Add `tags` to concept pages** — batch operation, low risk
|
|
248
|
+
4. **Add `status`, `created`, `updated`, `tags` to source pages** — batch with `status: ingested` and current date
|
|
249
|
+
5. **Decide on type/status vocabulary** — either expand canonical set or reclassify
|
|
250
|
+
6. **Resolve 18 dead conceptual links** — either create stubs or correct to existing pages
|
|
251
|
+
7. **Resolve 9 dead entity links** — create entity stubs or remove wikilinks
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nodes":[
|
|
3
|
+
{"id":"1","type":"file","file":"wiki/overview.md","x":0,"y":0,"width":300,"height":140,"color":"1"},
|
|
4
|
+
{"id":"2","type":"file","file":"wiki/index.md","x":400,"y":0,"width":300,"height":140,"color":"1"},
|
|
5
|
+
{"id":"3","type":"file","file":"wiki/concepts/agent-codebase-interface.md","x":-400,"y":200,"width":280,"height":120,"color":"2"},
|
|
6
|
+
{"id":"4","type":"file","file":"wiki/concepts/progressive-disclosure-agents.md","x":-400,"y":370,"width":280,"height":120,"color":"2"},
|
|
7
|
+
{"id":"5","type":"file","file":"wiki/concepts/repo-map-ranking.md","x":-400,"y":540,"width":280,"height":120,"color":"2"},
|
|
8
|
+
{"id":"6","type":"file","file":"wiki/concepts/codebase-to-context-ingestion.md","x":0,"y":200,"width":280,"height":120,"color":"2"},
|
|
9
|
+
{"id":"7","type":"file","file":"wiki/concepts/think-in-code.md","x":0,"y":370,"width":280,"height":120,"color":"2"},
|
|
10
|
+
{"id":"8","type":"file","file":"wiki/concepts/hybrid-code-search.md","x":0,"y":540,"width":280,"height":120,"color":"2"},
|
|
11
|
+
{"id":"9","type":"file","file":"wiki/concepts/agent-search-enforcement.md","x":400,"y":200,"width":280,"height":120,"color":"2"},
|
|
12
|
+
{"id":"10","type":"file","file":"wiki/concepts/model-routing-agents.md","x":400,"y":370,"width":280,"height":120,"color":"2"},
|
|
13
|
+
{"id":"11","type":"file","file":"wiki/modules/harness.md","x":800,"y":0,"width":280,"height":120,"color":"5"},
|
|
14
|
+
{"id":"12","type":"file","file":"wiki/modules/spec-hardening.md","x":800,"y":170,"width":280,"height":120,"color":"5"},
|
|
15
|
+
{"id":"13","type":"file","file":"wiki/modules/structured-planning.md","x":800,"y":340,"width":280,"height":120,"color":"5"},
|
|
16
|
+
{"id":"14","type":"file","file":"wiki/modules/grounding-checkpoints.md","x":800,"y":510,"width":280,"height":120,"color":"5"},
|
|
17
|
+
{"id":"15","type":"file","file":"wiki/concepts/execution-feedback-loop.md","x":400,"y":540,"width":280,"height":120,"color":"2"},
|
|
18
|
+
{"id":"16","type":"file","file":"wiki/decisions/adr-008.md","x":-400,"y":710,"width":280,"height":120,"color":"4"},
|
|
19
|
+
{"id":"17","type":"file","file":"wiki/decisions/adr-009.md","x":0,"y":710,"width":280,"height":120,"color":"4"},
|
|
20
|
+
{"id":"18","type":"file","file":"wiki/decisions/adr-010.md","x":400,"y":710,"width":280,"height":120,"color":"4"},
|
|
21
|
+
{"id":"19","type":"file","file":"wiki/decisions/2026-04-30-pi-lean-ctx-native.md","x":800,"y":680,"width":280,"height":120,"color":"4"},
|
|
22
|
+
{"id":"20","type":"file","file":"wiki/questions/Research: semantic code search tools.md","x":-800,"y":200,"width":280,"height":120,"color":"6"},
|
|
23
|
+
{"id":"21","type":"file","file":"wiki/questions/Research: context-mode vs lean-ctx.md","x":-800,"y":370,"width":280,"height":120,"color":"6"},
|
|
24
|
+
{"id":"22","type":"file","file":"wiki/questions/research-wozcode-token-reduction.md","x":-800,"y":540,"width":280,"height":120,"color":"6"}
|
|
25
|
+
],
|
|
26
|
+
"edges":[
|
|
27
|
+
{"id":"e1","fromNode":"1","toNode":"2","fromSide":"right","toSide":"left"},
|
|
28
|
+
{"id":"e2","fromNode":"2","toNode":"11","fromSide":"right","toSide":"left"},
|
|
29
|
+
{"id":"e3","fromNode":"3","toNode":"4","fromSide":"bottom","toSide":"top"},
|
|
30
|
+
{"id":"e4","fromNode":"4","toNode":"5","fromSide":"bottom","toSide":"top"},
|
|
31
|
+
{"id":"e5","fromNode":"6","toNode":"7","fromSide":"bottom","toSide":"top"},
|
|
32
|
+
{"id":"e6","fromNode":"7","toNode":"8","fromSide":"bottom","toSide":"top"},
|
|
33
|
+
{"id":"e7","fromNode":"9","toNode":"10","fromSide":"bottom","toSide":"top"},
|
|
34
|
+
{"id":"e8","fromNode":"10","toNode":"15","fromSide":"bottom","toSide":"top"},
|
|
35
|
+
{"id":"e9","fromNode":"11","toNode":"12","fromSide":"bottom","toSide":"top"},
|
|
36
|
+
{"id":"e10","fromNode":"12","toNode":"13","fromSide":"bottom","toSide":"top"},
|
|
37
|
+
{"id":"e11","fromNode":"13","toNode":"14","fromSide":"bottom","toSide":"top"},
|
|
38
|
+
{"id":"e12","fromNode":"16","toNode":"17","fromSide":"right","toSide":"left"},
|
|
39
|
+
{"id":"e13","fromNode":"17","toNode":"18","fromSide":"right","toSide":"left"},
|
|
40
|
+
{"id":"e14","fromNode":"20","toNode":"21","fromSide":"bottom","toSide":"top"},
|
|
41
|
+
{"id":"e15","fromNode":"21","toNode":"22","fromSide":"bottom","toSide":"top"}
|
|
42
|
+
]
|
|
43
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
---
|
|
2
|
+
type: module
|
|
3
|
+
title: Adversarial Verification
|
|
4
|
+
status: developing
|
|
5
|
+
created: 2026-04-28
|
|
6
|
+
updated: 2026-04-28
|
|
7
|
+
tags: [harness, critics, testing, layer-4, quality]
|
|
8
|
+
layer: "4"
|
|
9
|
+
sources:
|
|
10
|
+
- "[[harness-implementation-plan]]"
|
|
11
|
+
related:
|
|
12
|
+
- "[[agentic-harness]]"
|
|
13
|
+
- "[[spec-hardening]]"
|
|
14
|
+
- "[[automated-observability]]"
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# Adversarial Verification
|
|
18
|
+
|
|
19
|
+
Layer 4 of the [[agentic-harness]]. Critic agents **attack**, not review. No code ships without passing adversarial review. See [[adr-008]] for the spec-only QA decision.
|
|
20
|
+
|
|
21
|
+
## Critic Focus Areas
|
|
22
|
+
|
|
23
|
+
| Focus | Attack Vector | Default |
|
|
24
|
+
|-------|--------------|---------|
|
|
25
|
+
| **Correctness** | Logic errors, off-by-one, null derefs | On |
|
|
26
|
+
| **Security** | Injection, auth bypass, data exposure | Off (risk-sensitive) |
|
|
27
|
+
| **Performance** | N+1 queries, unbounded loops | Off (risk-sensitive) |
|
|
28
|
+
| **Spec compliance** | Missing functionality, scope creep | On |
|
|
29
|
+
|
|
30
|
+
## Verdict Semantics
|
|
31
|
+
|
|
32
|
+
| Verdict | Action |
|
|
33
|
+
|---------|--------|
|
|
34
|
+
| `pass` | Proceed to [[automated-observability|Layer 5]] |
|
|
35
|
+
| `fail` | Rework subtask |
|
|
36
|
+
| `conditional_pass` | Proceed with logged caveats |
|
|
37
|
+
|
|
38
|
+
## Retry Logic
|
|
39
|
+
|
|
40
|
+
Failed → rework → re-review. Max `max_attack_rounds` (default: 2). If exhausted, blocked and escalated to human.
|
|
41
|
+
|
|
42
|
+
## AI Prompt Pattern
|
|
43
|
+
|
|
44
|
+
**"Your ONLY job is to find failures. Do NOT suggest improvements. Do NOT be constructive. ATTACK."**
|
|
45
|
+
|
|
46
|
+
## Extension Interface
|
|
47
|
+
|
|
48
|
+
| Type | Name |
|
|
49
|
+
|------|------|
|
|
50
|
+
| Tool | `run-critics` |
|
|
51
|
+
| Tool | `run-critic-focus` |
|
|
52
|
+
| Command | `/harness-critic-status` |
|
|
53
|
+
|
|
54
|
+
## Files
|
|
55
|
+
|
|
56
|
+
- `lib/harness-critics.ts` — CriticAgent class, adversarial prompt templates
|
|
57
|
+
- `extensions/harness-critics.ts` — Extension with review routing
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
---
|
|
2
|
+
type: module
|
|
3
|
+
title: Automated Observability
|
|
4
|
+
status: developing
|
|
5
|
+
created: 2026-04-28
|
|
6
|
+
updated: 2026-04-28
|
|
7
|
+
tags: [harness, observability, metrics, layer-5, quality]
|
|
8
|
+
layer: "5"
|
|
9
|
+
sources:
|
|
10
|
+
- "[[harness-implementation-plan]]"
|
|
11
|
+
related:
|
|
12
|
+
- "[[agentic-harness]]"
|
|
13
|
+
- "[[adversarial-verification]]"
|
|
14
|
+
- "[[persistent-memory]]"
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# Automated Observability
|
|
18
|
+
|
|
19
|
+
Layer 5 of the [[agentic-harness]]. Instrumentation is part of the definition of done. If `require_metrics=true` (default), the subtask is not complete until instrumentation code exists.
|
|
20
|
+
|
|
21
|
+
## Flow
|
|
22
|
+
|
|
23
|
+
1. `subtask_verified` → extract metrics, health checks, alerts from code change + task spec
|
|
24
|
+
2. Produce **ObservabilitySpec**
|
|
25
|
+
3. If `require_metrics=true`: scan code changes for instrumentation → if missing, generate scaffolding
|
|
26
|
+
4. Store ObservabilitySpec with SubtaskResult
|
|
27
|
+
5. Emit `subtask_observable` → task marked done
|
|
28
|
+
|
|
29
|
+
## ObservabilitySpec Data Contract
|
|
30
|
+
|
|
31
|
+
- **metrics** — name, type (counter/gauge/histogram), description, unit, instrumentation_code
|
|
32
|
+
- **health_checks** — name, method, expected_result
|
|
33
|
+
- **alert_conditions** — metric_name, threshold, action
|
|
34
|
+
|
|
35
|
+
Every metric must answer "is this working correctly?" — no vanity metrics.
|
|
36
|
+
|
|
37
|
+
## Extension Interface
|
|
38
|
+
|
|
39
|
+
| Type | Name |
|
|
40
|
+
|------|------|
|
|
41
|
+
| Tool | `define-observability` |
|
|
42
|
+
| Tool | `verify-observability` |
|
|
43
|
+
| Command | `/harness-observability-status` |
|
|
44
|
+
|
|
45
|
+
## Config
|
|
46
|
+
|
|
47
|
+
```json
|
|
48
|
+
{ "observability": { "require_metrics": true } }
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Files
|
|
52
|
+
|
|
53
|
+
- `lib/harness-observability.ts` — ObservabilityEnforcer class
|
|
54
|
+
- `extensions/harness-observability.ts` — Extension with enforcement hooks
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
type: module
|
|
3
|
+
path: "bench/"
|
|
4
|
+
status: active
|
|
5
|
+
language: typescript/bash
|
|
6
|
+
purpose: "Local benchmarking and evaluations."
|
|
7
|
+
maintainer: "aryaniyaps"
|
|
8
|
+
last_updated: "2026-04-28"
|
|
9
|
+
linked_issues: []
|
|
10
|
+
depends_on: []
|
|
11
|
+
used_by: []
|
|
12
|
+
tags: [module, bench]
|
|
13
|
+
created: "2026-04-28"
|
|
14
|
+
updated: "2026-04-28"
|
|
15
|
+
title: "Benchmarks"
|
|
16
|
+
---
|
|
17
|
+
# Benchmarks
|
|
18
|
+
|
|
19
|
+
## Description
|
|
20
|
+
Contains configuration and scaffolding for `terminal-bench` evaluations using the Harbor custom-agent flow. Excluded from npm publishing.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
type: module
|
|
3
|
+
path: "extensions/"
|
|
4
|
+
status: active
|
|
5
|
+
language: typescript
|
|
6
|
+
purpose: "Custom programmatic extensions hooking into agent lifecycle."
|
|
7
|
+
maintainer: "aryaniyaps"
|
|
8
|
+
last_updated: "2026-04-28"
|
|
9
|
+
linked_issues: []
|
|
10
|
+
depends_on: []
|
|
11
|
+
used_by: ["pi"]
|
|
12
|
+
tags: [module, extensions]
|
|
13
|
+
created: "2026-04-28"
|
|
14
|
+
updated: "2026-04-28"
|
|
15
|
+
title: "Extensions"
|
|
16
|
+
---
|
|
17
|
+
# Extensions
|
|
18
|
+
|
|
19
|
+
## Description
|
|
20
|
+
TypeScript extensions that hook into the agent execution lifecycle.
|
|
21
|
+
|
|
22
|
+
## Components
|
|
23
|
+
- `lean-ctx-enforce.ts`: Enforces the use of `lean-ctx` in shell and read operations to ensure token efficiency.
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
---
|
|
2
|
+
type: module
|
|
3
|
+
title: Grounding Checkpoints
|
|
4
|
+
status: developing
|
|
5
|
+
created: 2026-04-28
|
|
6
|
+
updated: 2026-04-28
|
|
7
|
+
tags: [harness, execution, drift-detection, layer-3, quality]
|
|
8
|
+
layer: "3"
|
|
9
|
+
sources:
|
|
10
|
+
- "[[harness-implementation-plan]]"
|
|
11
|
+
related:
|
|
12
|
+
- "[[agentic-harness]]"
|
|
13
|
+
- "[[structured-planning]]"
|
|
14
|
+
- "[[adversarial-verification]]"
|
|
15
|
+
- "[[spec-hardening]]"
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
# Grounding Checkpoints (MVC Execution)
|
|
19
|
+
|
|
20
|
+
Layer 3 of the [[agentic-harness]]. Enforces smallest verifiable changes with mandatory re-grounding against the spec. Drift detection prevents scope creep.
|
|
21
|
+
|
|
22
|
+
## Flow
|
|
23
|
+
|
|
24
|
+
For each ready node in plan:
|
|
25
|
+
1. **Pre-execution grounding**: Load HardenedSpec, compare spec_version, compute state_hash
|
|
26
|
+
2. If spec changed → `drift_detected` → abort, replan from Layer 2
|
|
27
|
+
3. Execute subtask
|
|
28
|
+
4. **Post-execution grounding**: Verify output matches declared outputs, no anti-criteria violated
|
|
29
|
+
5. Git commit intermediate state
|
|
30
|
+
6. Emit `subtask_completed` → Layer 4
|
|
31
|
+
|
|
32
|
+
## GroundingCheckpoint Data
|
|
33
|
+
|
|
34
|
+
| Field | Purpose |
|
|
35
|
+
|-------|---------|
|
|
36
|
+
| `task_id` | Which task |
|
|
37
|
+
| `spec_id` / `spec_version_at_checkpoint` | Spec snapshot |
|
|
38
|
+
| `drift_detected` | Boolean; if true, execution halts |
|
|
39
|
+
| `state_hash` | Hash of all node statuses |
|
|
40
|
+
| `committed` / `git_sha` | Commit state |
|
|
41
|
+
|
|
42
|
+
## Error States
|
|
43
|
+
|
|
44
|
+
| Error | Recovery |
|
|
45
|
+
|-------|----------|
|
|
46
|
+
| `spec_drift` | Abort, replan from Layer 2 |
|
|
47
|
+
| `anti_criteria_violation` | Mark failed, retry or abort |
|
|
48
|
+
| `grounding_checkpoint_failure` | Log warning, degraded mode |
|
|
49
|
+
| `all_nodes_failed` | Emit `execution_complete` with failure state |
|
|
50
|
+
|
|
51
|
+
## Extension Interface
|
|
52
|
+
|
|
53
|
+
| Type | Name |
|
|
54
|
+
|------|------|
|
|
55
|
+
| Tool | `execute-next-task` |
|
|
56
|
+
| Tool | `grounding-check` |
|
|
57
|
+
| Command | `/harness-execution-status` |
|
|
58
|
+
|
|
59
|
+
## Files
|
|
60
|
+
|
|
61
|
+
- `lib/harness-executor.ts` — Executor class, grounding logic, drift detection
|
|
62
|
+
- `extensions/harness-executor.ts` — Extension for subtask execution
|