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,437 @@
|
|
|
1
|
+
---
|
|
2
|
+
type: index
|
|
3
|
+
status: active
|
|
4
|
+
created: 2026-04-28
|
|
5
|
+
updated: 2026-05-05
|
|
6
|
+
tags: [meta, index, catalog]
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Codebase Map & Architecture Wiki
|
|
11
|
+
|
|
12
|
+
## Overview
|
|
13
|
+
This wiki maps the codebase architecture, tracks key software design decisions, and serves as the persistent memory layer for the ultimate-pi agentic harness. See [[harness-implementation-plan]] for the authoritative master plan (updated May 2026: skill-first v2 architecture).
|
|
14
|
+
|
|
15
|
+
## Harness Pipeline
|
|
16
|
+
|
|
17
|
+
| Layer | Module | Summary |
|
|
18
|
+
|-------|--------|---------|
|
|
19
|
+
| — | [[harness]] | 8-layer mandatory pipeline with drift monitor + sentrux structural gate + cross-cutting tool enhancements |
|
|
20
|
+
| — | [[harness-implementation-plan]] | Master build plan (Skill-First v2): phases mapped to skills vs code, unified token budget, sentrux P44 integration |
|
|
21
|
+
| L1 | [[spec-hardening]] | Block execution until ambiguities resolved |
|
|
22
|
+
| L2 | [[structured-planning]] | Machine-readable task DAG + sprint contracts |
|
|
23
|
+
| L2.5 | [[drift-detection-unified]] | Runtime drift monitor: 3 paradigms (tool-call, spec, implementation) |
|
|
24
|
+
| L3 | [[grounding-checkpoints]] | Smallest verifiable change + spec-drift detection |
|
|
25
|
+
| L3 | [[think-in-code-enforcement]] | Mandatory code-over-data paradigm at tool layer |
|
|
26
|
+
| L4 | [[adversarial-verification]] | Critic agents attack with hard-threshold pass/fail |
|
|
27
|
+
| L5 | [[automated-observability]] | Instrumentation is definition-of-done |
|
|
28
|
+
| L6 | [[persistent-memory]] | claude-obsidian wiki as knowledge base |
|
|
29
|
+
| L7 | [[schema-orchestration]] | Archon workflow DAG, enforces wiki contract |
|
|
30
|
+
| L8 | [[wiki-query-interface]] | LLM-native search via claude-obsidian skills |
|
|
31
|
+
|
|
32
|
+
## Pipeline Integration
|
|
33
|
+
|
|
34
|
+
| Page | Summary |
|
|
35
|
+
|------|---------|
|
|
36
|
+
| [[harness-wiki-skill-mapping]] | Skill-to-layer contract: which wiki skill fires when |
|
|
37
|
+
| [[harness-wiki-pipeline]] | Read-first/write-after data flow between harness and wiki |
|
|
38
|
+
|
|
39
|
+
## Decisions
|
|
40
|
+
|
|
41
|
+
| Decision | Status | Summary |
|
|
42
|
+
|----------|--------|---------|
|
|
43
|
+
| [[adr-008]] | active | Spec-Only Black-Box QA |
|
|
44
|
+
| [[adr-009]] | active | claude-obsidian Mode B for Persistent Memory |
|
|
45
|
+
| [[adr-010]] | active | Agentic Harness ↔ Wiki Tight-Coupling Contract |
|
|
46
|
+
| [[adr-011]] | accepted | Multi-Agent Consensus Debate with Selective Routing (iMAD) |
|
|
47
|
+
| [[adr-017]] | **superseded** | ~~Harness Project Structure — Event bus removed, pi built-in replaces custom wiring~~ |
|
|
48
|
+
| [[2026-04-30-pi-lean-ctx-native]] | active | Adopt pi-lean-ctx native package, drop custom extension |
|
|
49
|
+
| [[colocate-wiki]] | active | Co-locating Wiki with Codebase |
|
|
50
|
+
|
|
51
|
+
## Formal Models & Control Frameworks
|
|
52
|
+
|
|
53
|
+
| Framework | Summary |
|
|
54
|
+
|-----------|---------|
|
|
55
|
+
| [[harness-control-frameworks]] | Unified view: H-Formalism + Feedforward-Feedback + Generator-Evaluator |
|
|
56
|
+
| [[harness-h-formalism]] | H = (E, T, C, S, L, V) — 6-component formal model |
|
|
57
|
+
| [[feedforward-feedback-harness]] | Guides + Sensors, Computational + Inferential |
|
|
58
|
+
| [[generator-evaluator-architecture]] | GAN-inspired separation of generator and evaluator agents |
|
|
59
|
+
| [[model-adaptive-harness]] | Harness generates provider-native prompts (v2 redesign, May 2026) |
|
|
60
|
+
| [[provider-native-prompting]] | Generate prompts optimized for each provider's official conventions |
|
|
61
|
+
| [[Prompt Renderer]] | Build-time compilation: base spec → per-model prompts via pluggable renderers |
|
|
62
|
+
| [[Build-Time Prompt Compilation]] | Compile prompts at build time, ship as static JSON in npm — zero runtime cost |
|
|
63
|
+
| [[harness-configuration-layers]] | Four-layer config: Signal, Gate, Channel, Completion — now provider-native (v2) |
|
|
64
|
+
| [[self-evolving-harness]] | Auto-synthesis and meta-optimization of harness code |
|
|
65
|
+
|
|
66
|
+
## Concepts — Legendary Engineering Patterns
|
|
67
|
+
|
|
68
|
+
| Concept | Summary |
|
|
69
|
+
|---------|---------|
|
|
70
|
+
| [[legendary-engineering-patterns-harness]] | 10 patterns from Torvalds/Thompson/Ritchie/Stroustrup/Hejlsberg/van Rossum mapped to harness layers |
|
|
71
|
+
|
|
72
|
+
## Concepts — Execution & Drift
|
|
73
|
+
|
|
74
|
+
| Concept | Summary |
|
|
75
|
+
|---------|---------|
|
|
76
|
+
| [[drift-detection-unified]] | Three complementary drift paradigms at L2.5, L3, L4 |
|
|
77
|
+
| [[context-drift-in-agents]] | Progressive degradation of agent behavior over extended interactions |
|
|
78
|
+
| [[meta-agent-context-pruning]] | Detect stuck → prune dead context → restart agent (novel synthesis) |
|
|
79
|
+
| [[agent-loop-detection-patterns]] | Production patterns: repetition, ping-pong, retry-without-progress |
|
|
80
|
+
| [[guardian-agent-pattern]] | Pre-execution and post-execution safety validation |
|
|
81
|
+
| [[codex-harness-innovations]] | Codex innovations: 10 patterns cataloged from open-source Rust agent, first-principles analysis |
|
|
82
|
+
| [[codebase-intelligence-harness-integration]] | 7-point integration map for fallow codebase intelligence in harness pipeline |
|
|
83
|
+
| [[codebase-intelligence-ecosystem-comparison]] | Cross-language gap analysis: no ecosystem has fallow-equivalent |
|
|
84
|
+
| [[cursor-harness-innovations]] | 10 Cursor innovations cataloged with first-principles analysis for harness integration |
|
|
85
|
+
| [[context-anxiety]] | Models rush to finish as context window fills |
|
|
86
|
+
| [[verification-drift-detection]] | Stub — see [[grounding-checkpoints]] |
|
|
87
|
+
| [[fork-safe-spec-storage]] | Fork isolation: gitignored cache + `harness init` bootstrap |
|
|
88
|
+
| [[content-addressed-spec-identity]] | Content-hash spec identity + `harness migrate` transfer-on-merge |
|
|
89
|
+
| [[harness-engineering-first-principles]] | Synthesized 12 first principles from Fowler, OpenAI, LangChain, Augment |
|
|
90
|
+
| [[skill-first-architecture]] | **UPDATED (May 2026)**: Harness layers as markdown skills — only drift monitor remains as code. Event bus handled by pi built-in. Zero-compile iteration. |
|
|
91
|
+
| [[agent-skills-pattern]] | Progressive disclosure: skills loaded on-demand to prevent context rot |
|
|
92
|
+
| [[policy-engine-pattern]] | Pre-execution gates: deterministic constraints vs probabilistic compliance |
|
|
93
|
+
| [[gemini-cli-architecture]] | Gemini CLI SOTA: 15 harness innovations, 2-package architecture, weekly releases |
|
|
94
|
+
|
|
95
|
+
## Concepts — Chunking & Embeddings
|
|
96
|
+
|
|
97
|
+
| Concept | Summary |
|
|
98
|
+
|---------|---------|
|
|
99
|
+
| [[AST-Aware Code Chunking]] | Split code at AST boundaries, not character limits; +4.3 Recall@5 |
|
|
100
|
+
| [[Contextualized Text Embedding]] | Prepend scope/signatures/imports before embedding raw code |
|
|
101
|
+
| [[Late Chunking vs Early Chunking]] | Embed full doc then pool vs embed chunks separately; contextual retrieval is sweet spot |
|
|
102
|
+
|
|
103
|
+
## Concepts — Context & Search
|
|
104
|
+
|
|
105
|
+
| Concept | Summary |
|
|
106
|
+
|---------|---------|
|
|
107
|
+
| [[think-in-code]] | Paradigm: write code to process data, not read raw data |
|
|
108
|
+
| [[agentic-harness-context-enforcement]] | 5-layer enforcement for context-efficient behavior |
|
|
109
|
+
| [[context-mode]] | FTS5 sandbox architecture for tool output |
|
|
110
|
+
| [[lean-ctx]] | Context Runtime with AST compression and 90+ shell patterns |
|
|
111
|
+
| [[context-continuity]] | Session state preservation across context compaction |
|
|
112
|
+
| [[ast-compression]] | Tree-sitter signature extraction, 60-95% reduction |
|
|
113
|
+
| [[shell-pattern-compression]] | 90+ command patterns (git, npm, cargo, docker) auto-compressed |
|
|
114
|
+
| [[fts5-sandbox]] | context-mode intercept-and-sandbox architecture |
|
|
115
|
+
| [[ast-truncation]] | Stubbing function bodies at AST level for token-efficient reading |
|
|
116
|
+
| [[fuzzy-edit-matching]] | Diff algorithm tolerating formatting drift |
|
|
117
|
+
| [[inline-post-edit-validation]] | Syntax-only post-edit compiler/parser check (<2s) |
|
|
118
|
+
| [[hybrid-code-search]] | BM25 + embeddings + RRF fusion |
|
|
119
|
+
| [[agent-search-enforcement]] | 3-layer defense to force semantic search over grep/cat |
|
|
120
|
+
| [[ts-execution-layer]] | Replace flat tool calling with typed TypeScript API + sandboxed runtime (3-4x context reduction) |
|
|
121
|
+
| [[mcp-tool-routing]] | MCP protocol for semantic search as first-class agent tool |
|
|
122
|
+
| [[codebase-to-context-ingestion]] | Converting entire codebases into structured LLM context |
|
|
123
|
+
| [[memory-system-of-record-vs-ephemeral-cache]] | Canonical wiki memory + optional local fast cache layering |
|
|
124
|
+
|
|
125
|
+
## Concepts — Orchestration & Harness
|
|
126
|
+
|
|
127
|
+
| Concept | Summary |
|
|
128
|
+
|---------|---------|
|
|
129
|
+
| [[agentic-orchestration-pipeline]] | Three patterns: subagent delegation, team dispatch, sequential chaining |
|
|
130
|
+
| [[agent-harness-architecture]] | Agent = Model + Harness. Scaffolding + Harness phases. Feedforward guides + Feedback sensors |
|
|
131
|
+
| [[multi-agent-specialization]] | Specialization by role, model, and tool set. Team composition via YAML config |
|
|
132
|
+
| [[context-engineering]] | Staged compaction, dual-memory, event-driven reminders, lazy tool discovery, prompt caching |
|
|
133
|
+
| [[safety-defense-in-depth]] | Five-layer architecture: prompt → schema → approval → validation → hooks |
|
|
134
|
+
|
|
135
|
+
## Concepts — Agent Skills & Methodology
|
|
136
|
+
|
|
137
|
+
| Concept | Summary |
|
|
138
|
+
|---------|---------|
|
|
139
|
+
| [[pi-vscode-extension-landscape]] | Three extension patterns for Pi in VS Code: official bridge, LM provider, community full UI |
|
|
140
|
+
| [[vcc-conversation-compaction-for-pi]] | VCC in Pi means deterministic conversation compaction + recall (`pi-vcc`), not VS Code UI |
|
|
141
|
+
| [[deterministic-session-compaction]] | **UPDATED**: No-LLM compaction pattern: pi-vcc, Distill, MemoSift, Codex DSC. Now includes context folding comparison and 3-layer token management architecture |
|
|
142
|
+
| [[context-folding]] | **NEW**: RL-learned branch/return sub-trajectories. 10x context reduction (32K vs 327K). arXiv 2510.11967 (ByteDance/CMU/Stanford). Now in Anthropic's API |
|
|
143
|
+
| [[superpowers-methodology]] | Hard-gate discipline framework: brainstorm→plan→TDD→subagent→review pipeline |
|
|
144
|
+
| [[agent-skills-ecosystem]] | 490K+ SKILL.md marketplace, open standard, cross-agent, security risks |
|
|
145
|
+
|
|
146
|
+
## Concepts — Agent Architecture
|
|
147
|
+
|
|
148
|
+
| Concept | Summary |
|
|
149
|
+
|---------|---------|
|
|
150
|
+
| [[Multi-Agent AI Coding Architecture]] | Universal pattern: Planner→Architect→Coder/Generator→Evaluator with structured handoffs |
|
|
151
|
+
| [[Context-Aware System Reminders]] | Event-driven injection of behavioral guidance at decision points to counteract attention-decay |
|
|
152
|
+
| [[Context Engine (AI Coding)]] | Semantic search engine providing deep codebase understanding |
|
|
153
|
+
| [[Semantic Codebase Indexing]] | Converting code to vector embeddings for similarity search |
|
|
154
|
+
| [[Dual-Model Agent Architecture]] | Fast model for iteration + deliberative model for selection |
|
|
155
|
+
| [[Prompt Enhancement]] | Pre-processing queries with retrieved codebase context |
|
|
156
|
+
| [[Majority Vote Ensembling]] | Generate N solutions, LLM selects best |
|
|
157
|
+
| [[Contractor vs Employee AI Model]] | Context makes the difference, not intelligence |
|
|
158
|
+
| [[agentic-harness]] | Central execution pipeline concept |
|
|
159
|
+
| [[consensus-debate]] | Multi-agent dialectical debate protocol for harness decisions |
|
|
160
|
+
| [[lifecycle-hooks]] | Tool-level deterministic hooks (30+ events, exit-code semantics, 100% compliance) |
|
|
161
|
+
| [[structured-compaction]] | Five-layer compaction with forked subagent, ~85% context reduction |
|
|
162
|
+
| [[subagent-worktree-isolation]] | Fresh context windows + isolated git worktrees per subagent |
|
|
163
|
+
| [[selective-debate-routing]] | iMAD: trigger debate only when beneficial (92% token savings) |
|
|
164
|
+
| [[agent-codebase-interface]] | Designing tool interfaces for AI agents, not humans |
|
|
165
|
+
| [[progressive-disclosure-agents]] | Layered codebase information (L0-L3) within token budgets |
|
|
166
|
+
| [[repo-map-ranking]] | Graph centrality algorithm for selecting important symbols |
|
|
167
|
+
| [[execution-feedback-loop]] | Agent debug-test-iterate cycle via structured test output |
|
|
168
|
+
| [[model-routing-agents]] | Dispatching exploration to cheap models, code gen to frontier |
|
|
169
|
+
| [[pi-messenger-analysis]] | What we adopt/strip from pi-messenger for consensus transport |
|
|
170
|
+
|
|
171
|
+
## Concepts — Antigravity Innovations
|
|
172
|
+
|
|
173
|
+
| Concept | Summary |
|
|
174
|
+
|---------|--------|
|
|
175
|
+
| [[antigravity-agent-first-architecture]] | Two-view control plane: Editor View + Manager View for multi-agent orchestration |
|
|
176
|
+
| [[agent-artifacts-verifiable-deliverables]] | Trust via human-reviewable deliverables instead of raw tool logs |
|
|
177
|
+
| [[agent-browser-browser-automation]] | Vercel Labs agent-browser (31.4K stars, Apache 2.0, Rust-native) — browser automation CLI for AI agents. Snapshot + refs, annotated screenshots, structured diff. Replaces browser-harness for P30 May 2026. |
|
|
178
|
+
| [[browser-subagent-visual-verification]] | Headless browser agent that visually verifies UI changes (now uses Vercel Labs agent-browser — May 2026) |
|
|
179
|
+
|
|
180
|
+
## Modules — Other
|
|
181
|
+
|
|
182
|
+
| Module | Summary |
|
|
183
|
+
|--------|---------|
|
|
184
|
+
| [[skills]] | Agent capability plugins |
|
|
185
|
+
| [[extensions]] | Programmatic hooks |
|
|
186
|
+
| [[bench]] | Evaluation tools (terminal-bench) |
|
|
187
|
+
|
|
188
|
+
## Entities — Projects & Tools
|
|
189
|
+
|
|
190
|
+
| Entity | Summary |
|
|
191
|
+
|--------|---------|
|
|
192
|
+
| [[gsd-get-shit-done]] | **NEW**: 60K ⭐ meta-prompting system. Discuss→plan→execute→verify→ship pipeline. Downstream from our harness. |
|
|
193
|
+
| [[pi-coding-agent]] | Open-source terminal coding agent by Mario Zechner. TypeScript extension API. Our harness platform |
|
|
194
|
+
| [[opendev]] | Open-source terminal agent. First comprehensive architecture paper (arXiv:2603.05344v1) |
|
|
195
|
+
|
|
196
|
+
## Entities — People
|
|
197
|
+
|
|
198
|
+
| Entity | Summary |
|
|
199
|
+
|--------|---------|
|
|
200
|
+
| [[jesse-vincent]] | **NEW**: Creator of Superpowers. Request Tracker, K-9 Mail, Prime Radiant founder |
|
|
201
|
+
| [[disler-indydevdan]] | Creator of pi-vs-claude-code. 15+ Pi extensions. Reference implementation for orchestration |
|
|
202
|
+
|
|
203
|
+
## Entities — Companies
|
|
204
|
+
|
|
205
|
+
| Entity | Summary |
|
|
206
|
+
|--------|---------|
|
|
207
|
+
| [[Lovable (company)]] | Full-stack AI dev platform (formerly GPT Engineer). SOC 2, ISO 27001, multi-agent pipeline |
|
|
208
|
+
| [[Bolt.new (StackBlitz)]] | Browser-based AI web dev. WebContainers + Claude. 0→$4M ARR in 4 weeks. Open source |
|
|
209
|
+
| [[Rocket.new]] | "Vibe Solutioning" platform: strategy + building + competitive intelligence. $15M seed, 1.5M users |
|
|
210
|
+
| [[Emergent Labs]] | YC S24. Autonomous coding agents replacing traditional software development |
|
|
211
|
+
| [[Linus Torvalds]] | Linux kernel, Git, chain-of-trust, don't break userspace |
|
|
212
|
+
| [[Ken Thompson]] | Unix co-creator, extreme leverage from deep understanding |
|
|
213
|
+
| [[Dennis Ritchie]] | Unix co-creator, C language, K&R, economy from constraints |
|
|
214
|
+
| [[Anders Hejlsberg]] | Turbo Pascal, Delphi, C#, TypeScript — fast feedback, behavioral compatibility |
|
|
215
|
+
| [[Guido van Rossum]] | Python — pragmatism over perfection, human control over architecture |
|
|
216
|
+
| [[Bjarne Stroustrup]] | C++ — evolutionary design, compatibility over purity, static typing |
|
|
217
|
+
| [[Augment Code]] | AI coding platform with Context Engine, #1 SWE-bench Pro |
|
|
218
|
+
| [[lean-ctx]] | Context Runtime for AI Agents — adopted via pi-lean-ctx native |
|
|
219
|
+
| [[ck-tool]] | Hybrid code search tool, Rust, 1.6k ⭐, MCP-native |
|
|
220
|
+
| [[vgrep-tool]] | Vector embedding search engine, Rust, 144 ⭐ |
|
|
221
|
+
| [[autodev-codebase]] | TypeScript MCP server with call graphs + Ollama embeddings |
|
|
222
|
+
| [[ops-codegraph-tool]] | Python dependency graph engine + semantic search |
|
|
223
|
+
| [[codesearch]] | Rust MCP server for Claude Code/OpenCode |
|
|
224
|
+
| [[javascript-runtimes]] | Node.js (stable, mature), Deno (secure, tooling-rich), Bun (fast, drop-in replacement) |
|
|
225
|
+
| [[vitest]] | Vite-native test framework, Jest-compatible, v4.1.5, Oxc-powered TypeScript |
|
|
226
|
+
|
|
227
|
+
## Concepts — Code Quality & Architecture Governance
|
|
228
|
+
|
|
229
|
+
| Concept | Summary |
|
|
230
|
+
|---------|---------|
|
|
231
|
+
| [[Quality Signal (sentrux)]] | Geometric mean of 5 root cause metrics (0-10,000 score), Nash Social Welfare theorem |
|
|
232
|
+
| [[Five Root Cause Metrics (sentrux)]] | modularity, acyclicity, depth, equality, redundancy — 3 edge + 2 node graph properties |
|
|
233
|
+
| [[sentrux Rules Engine]] | TOML-based architectural constraint system with layers, boundaries, CI enforcement |
|
|
234
|
+
| [[sentrux MCP Integration]] | 9-tool MCP server for AI agent feedback loops: scan, session_start/end, check_rules, etc. |
|
|
235
|
+
|
|
236
|
+
## Concepts — TypeScript & Code Organization
|
|
237
|
+
|
|
238
|
+
| Concept | Summary |
|
|
239
|
+
|---------|--------|
|
|
240
|
+
| [[typescript-strict-mode]] | `strict: true` enables 8+ compiler checks that prevent null reference bugs |
|
|
241
|
+
| [[barrel-files]] | Re-export files: useful for libraries, harmful for app code (circular imports, 68% module bloat) |
|
|
242
|
+
| [[monorepo-architecture]] | Single-repo multi-package: built-package vs internal-packages, Turborepo, ESM rules |
|
|
243
|
+
| [[result-monad-error-handling]] | Functional pattern: `Result<Ok, Err>` with map/flatMap/match — errors as values |
|
|
244
|
+
|
|
245
|
+
## Resolved Questions
|
|
246
|
+
|
|
247
|
+
| Resolution | Resolves |
|
|
248
|
+
|-----------|---------|
|
|
249
|
+
| [[resolved-context-pruning-inplace-vs-restart]] | In-place vs restart, cache interaction, chain-of-thought, meta-agent regress |
|
|
250
|
+
| [[resolved-treesitter-dynamic-languages]] | Tree-sitter + dynamic languages, 3-layer solution (syntax→types→runtime) |
|
|
251
|
+
| [[resolved-imad-debate-gating-transfer]] | iMAD QA→code review transfer, selective routing, model-specific classifiers |
|
|
252
|
+
| [[resolved-small-model-meta-agents]] | Haiku/Flash for drift detection, cost analysis, infinite regress resolved |
|
|
253
|
+
| [[resolved-mcp-tool-preference]] | MCP priority system (none exists), 3-layer enforcement, false positive rates |
|
|
254
|
+
| [[resolved-context-window-economics]] | Token allocation model, monorepo handling, caching, Gitingest questions |
|
|
255
|
+
|
|
256
|
+
## Research Syntheses
|
|
257
|
+
|
|
258
|
+
| Synthesis | Summary |
|
|
259
|
+
|-----------|---------|
|
|
260
|
+
| [[Research: pi-vcc]] | **UPDATED**: Pi compaction ecosystem grew 4→7 extensions. Anthropic launched official compaction API. Context Folding (arXiv) achieves 10x reduction. pi-vcc still only zero-LLM option. 80K token accuracy cliff validated |
|
|
261
|
+
| [[Research: vcc extension for pi coding agent]] | **NEW**: Topic split into two meanings: VS Code extension ecosystem vs literal `pi-vcc` compaction package |
|
|
262
|
+
| [[Research: how GSD fits into our coding harness setup]] | **NEW**: GSD is downstream (builds apps); our harness is upstream (controls agent behavior). Complementary. 3 adoptable patterns, 3 integration levels, 4 open questions. |
|
|
263
|
+
| [[Research: pi-vs-claude-code Agentic Orchestration Pipeline]] | **NEW**: Three orchestration patterns, harness architecture, safety layers, implementation path |
|
|
264
|
+
| [[Research: Augment Code Context Engine]] | Context Engine architecture, benchmarks, integration plan for harness |
|
|
265
|
+
| [[Research: Model-Adaptive Agent Harness Design]] | Four-layer harness must be specialized per model |
|
|
266
|
+
| [[Research: context-mode vs lean-ctx]] | context-mode vs lean-ctx + Think in Code enforcement |
|
|
267
|
+
| [[Research: semantic code search tools]] | Self-hosted semantic code search — ck recommended |
|
|
268
|
+
| [[research-agent-first-codebase-exploration]] | Rethinking OSS strategies for AI agents (ACI design) |
|
|
269
|
+
| [[research-wozcode-token-reduction]] | WOZCODE architecture analysis and harness integration |
|
|
270
|
+
| [[research-gitingest-gitreverse-integration]] | Gitingest adopted, GitReverse skipped |
|
|
271
|
+
| [[Research: Meta-Agent Context Drift Detection]] | Novel synthesis: detect → prune → restart |
|
|
272
|
+
| [[research-agentic-coding-harness-latest-papers]] | 5 pipeline improvements, 3 future phases, formal H-model |
|
|
273
|
+
| [[Research: GitHub Issues as Harness Spec Storage]] | GitHub Issues as cloud-persistent spec storage with sub-issues + dependencies |
|
|
274
|
+
|
|
275
|
+
| [[Research: Codex State-of-the-Art Harness Improvements]] | Codex open-source architecture: 7 validations, 5 new gaps, 3 novel patterns, 5 new phases |
|
|
276
|
+
| [[Research: Automating Software Engineering - Lovable, Bolt, Emergent, Rocket]] | Platform architectures (Lovable, Bolt, Rocket, Emergent) + first-principles harness patterns from OpenAI/Anthropic/OpenDev |
|
|
277
|
+
| [[Research: Fallow Codebase Intelligence Harness Integration]] | Fallow: 7 harness integration points, cross-ecosystem gap analysis, P44 phases |
|
|
278
|
+
| [[Research: Claude Code State-of-the-Art Harness Improvements]] | Claude Code architecture: 6 gaps, 5 new phases, 4 first principles |
|
|
279
|
+
| [[Research: cursor.sh Harness Innovations]] | Cursor production harness: 5 validations, 4 new gaps, first-principles lessons |
|
|
280
|
+
| [[Research: Google Antigravity Harness Integration]] | Google Antigravity SOTA: artifacts, browser subagent, agent-first architecture, 3 new phases |
|
|
281
|
+
| [[Research: Gemini CLI SOTA Harness Integration]] | Gemini CLI SOTA: 15 innovations mapped, 7 integration priorities from first principles |
|
|
282
|
+
|
|
283
|
+
| [[Research: TypeScript Execution Layer for Agent Tool Calling]] | TS execution layer: CodeAct → Cloudflare Code Mode → Executor convergence, 3-4x context reduction, P43 phase |
|
|
284
|
+
| [[Research: executor.sh Harness Integration]] | executor.sh: integration layer scope, 3 new P43 sub-phases (catalog, discovery, policy), build vs integrate decision |
|
|
285
|
+
| [[Research: Prompt Renderer for Multi-Model Agent Harness]] | Build-time prompt renderer: per-model compilation, caching, variable system, npm distribution |
|
|
286
|
+
| [[Research: TypeScript Best Practices and Codebase Structure]] | Strict mode, runtimes, barrel files, monorepos, folder structure, error handling, testing |
|
|
287
|
+
| [[Research: Superpowers Skill for Agentic Coding Agents]] | **NEW**: Superpowers methodology, hard-gate enforcement, harness integration, ecosystem analysis |
|
|
288
|
+
| [[Research: Skill-First Harness Architecture]] | **UPDATED (May 2026)**: Rethought MVP + harness plans from first principles. Skills as atomic unit. 3 code files vs 15. Event bus removed. |
|
|
289
|
+
| [[Research: Engineering Workflows of Legendary Programmers and AI Harness Mapping]] | **NEW (May 2026)**: 10 patterns from 6 legendary programmers mapped to harness layers |
|
|
290
|
+
| [[Research: claude-mem over Obsidian for Harness Layer]] | Replacement assessment: keep Obsidian as source of truth, optional claude-mem as cache |
|
|
291
|
+
| [[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]] | First-principles reassessment: keep Obsidian canonical, use claude-mem only as non-authoritative acceleration cache |
|
|
292
|
+
| [[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]] | First-principles verdict: complement, not replace. Keep wiki canonical; use claude-mem only as fast cache |
|
|
293
|
+
|
|
294
|
+
## Sources (External Research)
|
|
295
|
+
|
|
296
|
+
| Source | Type | Summary |
|
|
297
|
+
|--------|------|---------|
|
|
298
|
+
| [[distill-deterministic-context-compression]] | github-repo | **NEW**: Siddhant-K-code/distill (143 stars), 4-layer deterministic context compression, ~12ms, different layer than pi-vcc |
|
|
299
|
+
| [[codex-dsc-rfc-8573]] | github-issue | **NEW**: Codex DSC RFC — deterministic checkpoint proposal, validates pi-vcc pattern, closed as not_planned |
|
|
300
|
+
| [[pi-compaction-extensions-ecosystem]] | ecosystem-analysis | **UPDATED**: 7 Pi compaction extensions across 3 layers: prevention (rtk-optimizer), mid-session (context-prune), boundary (vcc, omni-compact, model-aware, custom, agentic) |
|
|
301
|
+
| [[pi-rtk-optimizer-github-repo]] | github-repo | **NEW**: Upstream token reduction via command rewriting + output compaction, v0.5.3, deterministic, MIT |
|
|
302
|
+
| [[pi-omni-compact-github-repo]] | github-repo | **NEW**: Large-context model (1M+) subprocess compaction, v0.1.2, opposing philosophy to pi-vcc |
|
|
303
|
+
| [[pi-context-prune-github-repo]] | github-repo | **NEW**: Tool-call batch summarization with original preservation + prefix caching, 5 trigger modes |
|
|
304
|
+
| [[anthropic-compaction-api]] | official-docs | **NEW**: Anthropic server-side compaction API (beta Jan 2026). Claude Opus 4.7/4.6, Sonnet 4.6. LLM-based |
|
|
305
|
+
| [[context-folding-paper]] | paper | **NEW**: arXiv 2510.11967 (ByteDance/CMU/Stanford). 10x context reduction via RL-trained branch/return. 62% BrowseComp-Plus, 58% SWE-Bench at 32K tokens |
|
|
306
|
+
| [[pi-mono-compaction-docs]] | official-docs | Core Pi compaction docs (`/compact`, `/autocompact`, thresholds). Baseline for evaluating `pi-vcc` |
|
|
307
|
+
| [[pi-vscode-marketplace]] | marketplace-listing | **NEW**: Official Pi VS Code extension (`pi0.pi-vscode`), 1,348 installs, IDE bridge + `@pi` chat participant |
|
|
308
|
+
| [[pi-vscode-model-provider-marketplace]] | marketplace-listing | **NEW**: Pi as VS Code LM provider (`vscode.lm.*`) for Copilot Chat + model picker |
|
|
309
|
+
| [[vscode-pi-community-extension]] | marketplace-listing | **NEW**: Community unofficial extension (`cdervis.vscode-pi`), 352 installs, RPC sidebar/chat UX |
|
|
310
|
+
| [[pi-vcc-github-repo]] | github-repo | **UPDATED**: `pi-vcc` deterministic compaction/recall package for Pi sessions, v0.3.12, includes `overrideDefaultCompaction` route control and refreshed install metrics |
|
|
311
|
+
| [[gsd-github-repo]] | github-repo | **NEW**: 60K ⭐ meta-prompting/spec-driven dev system for Claude Code + 15 runtimes. MIT. v1.40.0. |
|
|
312
|
+
| [[gsd-codecentric-deep-dive]] | engineering-blog | **NEW**: Deep architecture analysis of GSD's slash commands, agents, hooks, state persistence |
|
|
313
|
+
| [[gsd-hn-discussion]] | discussion-thread | **NEW**: 473-pt HN discussion: community consensus, comparisons, limitations |
|
|
314
|
+
| [[superpowers-github-repo]] | github-repo | **NEW**: 179K ⭐ agentic skills framework, 14+ composable skills, hard-gate enforcement |
|
|
315
|
+
| [[superpowers-release-blog]] | blog-post | **NEW**: Original release announcement, persuasion principles, TDD for skills |
|
|
316
|
+
| [[superpowers-termdock-analysis]] | article | **NEW**: Third-party deep dive, skill-by-skill analysis, philosophy breakdown |
|
|
317
|
+
| [[sources/disler-pi-vs-claude-code]] | github-repo | Pi extension showcase: 15+ extensions for orchestration, safety, UI, cross-agent integration |
|
|
318
|
+
| [[sources/opendev-arxiv-2603.05344v1]] | academic-paper | OpenDev architecture: compound AI system, ACC, system reminders, 5-layer safety (Mar 2026) |
|
|
319
|
+
| [[sources/martin-fowler-harness-engineering]] | engineering-blog | Harness = Guides + Sensors + Steering Loop. Computational vs Inferential controls (Apr 2026) |
|
|
320
|
+
| [[sources/mindstudio-four-agent-types]] | article | Four agent types: Coding Harness, Dark Factory, Auto Research, Orchestration (2026) |
|
|
321
|
+
| [[sources/anthropic-effective-harnesses]] | engineering-blog | Authoritative harness definition: runtime framework for tool dispatch, context, safety (2025) |
|
|
322
|
+
| [[Source: Lovable Architecture & Clone Analysis]] | blog | Multi-agent architecture: Planner→Architect→Coder, Pydantic-typed handoffs, LangGraph orchestration |
|
|
323
|
+
| [[Source: Bolt.new Architecture & Case Study]] | case-study | WebContainers + Claude, 0→$4M ARR in 4 weeks, Remix frontend, open source |
|
|
324
|
+
| [[Source: Rocket.new — Vibe Solutioning Platform]] | news | Strategy→Build→Intelligence platform, $15M seed, 1.5M users, "vibe McKinsey" |
|
|
325
|
+
| [[Source: OpenAI Harness Engineering — 0 Lines of Human Code]] | engineering-blog | Codex-built product: 0 human-written lines, ~1M lines code, progressive disclosure, architecture enforcement |
|
|
326
|
+
| [[Source: OpenDev — Building AI Coding Agents for the Terminal]] | paper | Compound AI system, adaptive compaction, system reminders, 5-layer safety, MCP lazy discovery |
|
|
327
|
+
| [[linux-kernel-coding-workflow]] | official-documentation | Linux kernel coding style + dev process (Torvalds, 2026) |
|
|
328
|
+
| [[unix-philosophy]] | encyclopedia | Unix philosophy (Thompson, Ritchie, McIlroy, Raymond) |
|
|
329
|
+
| [[birth-of-unix-kernighan-interview]] | interview-podcast | Bell Labs Unix creation (Kernighan, 2020) |
|
|
330
|
+
| [[hejlsberg-7-learnings]] | interview-blog | 7 engineering lessons (Hejlsberg, GitHub Blog 2026) |
|
|
331
|
+
| [[guido-python-design-philosophy]] | interview-blog | Python design philosophy (van Rossum, 2009/2025) |
|
|
332
|
+
| [[Source: Google Gemini CLI Architecture Docs]] | official-docs | Architecture: 2 packages (cli+core), ReAct loop, tool system |
|
|
333
|
+
| [[Source: Google Blog - Gemini CLI Announcement]] | official-announcement | Launch: free tier, 1M token window, MCP, Google Search grounding |
|
|
334
|
+
| [[Source: Render AI Coding Agents Benchmark 2025]] | benchmark-report | Independent: Cursor 8/10, Gemini 6.8/10, strengths/weaknesses |
|
|
335
|
+
| [[Source: Martin Fowler - Harness Engineering]] | engineering-blog | Canonical: feedforward/feedback, computational/inferential, steering loop |
|
|
336
|
+
| [[Source: LangChain - Anatomy of Agent Harness]] | engineering-blog | Agent=Model+Harness, primitives derivation, model-harness co-evolution |
|
|
337
|
+
| [[Source: OpenAI Harness Engineering Five Principles]] | engineering-blog | 5 principles from 1M-line agent-built codebase |
|
|
338
|
+
| [[Source: Augment - Harness Engineering for AI Coding Agents]] | engineering-blog | PEV loop, constraint layers, measurement metrics |
|
|
339
|
+
| [[Source: Gemini CLI Changelogs]] | official-changelog | Feature evolution: v0.4–v0.40 across 40+ weekly releases |
|
|
340
|
+
| [[Augment Context Engine Official]] | product-page | Context Engine features, benchmarks, team impact |
|
|
341
|
+
| [[Augment SWE-bench Agent GitHub]] | github-repo | #1 open-source SWE-bench agent, dual-model architecture |
|
|
342
|
+
| [[Augment SWE-bench Pro Blog]] | blog-post | #1 SWE-bench Pro at 51.80%, same-model comparison |
|
|
343
|
+
| [[Augment Code WorkOS ERC 2025]] | conference-recap | Context Engine as prompt enhancer, live demo |
|
|
344
|
+
| [[Augment Code Codacy AI Giants]] | podcast-recap | Engineering interview: context strategy, pricing, onboarding |
|
|
345
|
+
| [[Augment Code MCP SiliconAngle]] | news-article | MCP launch, 30-80% improvement as context provider |
|
|
346
|
+
| [[Auggie Context MCP Server]] | github-repo | Community MCP wrapper for Augment context engine |
|
|
347
|
+
| [[meng2026-agent-harness-survey]] | paper | H=(E,T,C,S,L,V), 110+ papers, 23 systems |
|
|
348
|
+
| [[anthropic2026-harness-design]] | blog | GAN-inspired generator-evaluator architecture |
|
|
349
|
+
| [[bockeler2026-harness-engineering]] | blog | Feedforward/feedback controls (Martin Fowler) |
|
|
350
|
+
| [[forgecode-gpt5-agent-improvements]] | blog | Model-adaptive harness findings (GPT 5.4 vs Opus 4.6) |
|
|
351
|
+
| [[openai-prompt-guidance]] | official-docs | OpenAI prompt guidance: GPT-5.5 through GPT-4.1 |
|
|
352
|
+
| [[anthropic-prompt-best-practices]] | official-docs | Anthropic prompt engineering: Claude Opus 4.7 through Haiku 4.5 |
|
|
353
|
+
| [[gemini-3-prompting-guide]] | official-docs | Google Gemini 3 prompting guide on Vertex AI |
|
|
354
|
+
| [[lou2026-autoharness]] | paper | AutoHarness: LLM synthesizes harness from feedback |
|
|
355
|
+
| [[lee2026-meta-harness]] | paper | Meta-Harness: outer-loop harness optimization |
|
|
356
|
+
| [[fan2025-imad]] | paper | iMAD: selective debate routing, 92% token savings |
|
|
357
|
+
| [[ironclaw-drift-monitor]] | github-issue | Rule-based stuck-pattern detection (nearai/ironclaw #1634) |
|
|
358
|
+
| [[langsight-loop-detection]] | blog | Production loop detection with argument hashing |
|
|
359
|
+
| [[agent-drift-academic-paper]] | paper | Agent Drift: ASI framework, 42% task success reduction |
|
|
360
|
+
| [[vectara-guardian-agents]] | blog | Guardian Agents benchmark (~900 scenarios, 6 domains) |
|
|
361
|
+
| [[wozcode]] | product-doc | WOZCODE token-reduction architecture (25-55% savings) |
|
|
362
|
+
| [[ck-semantic-search]] | docs | ck hybrid code search documentation |
|
|
363
|
+
| [[vgrep-semantic-search]] | readme | vgrep vector embedding search |
|
|
364
|
+
| [[cast-code-chunking-paper]] | paper | cAST: AST-aware code chunking for RAG, +4.3 Recall@5 (June 2025) |
|
|
365
|
+
| [[vectara-chunking-vs-embedding-naacl2025]] | paper | Chunking strategy ≥ embedding model for retrieval quality, NAACL 2025 |
|
|
366
|
+
| [[coir-code-retrieval-benchmark]] | paper | CoIR: standard benchmark for code retrieval, ACL 2025, pip-installable |
|
|
367
|
+
| [[code-chunk-library-supermemory]] | tool | Production AST-aware code chunking library (npm), tree-sitter based |
|
|
368
|
+
| [[embedding-models-benchmark-supermemory-2025]] | benchmark | MiniLM vs BGE vs E5 vs Nomic on BEIR TREC-COVID (June 2025) |
|
|
369
|
+
| [[context-mode-website]] | website | context-mode.com landing page |
|
|
370
|
+
| [[leanctx-website]] | website | leanctx.com landing page |
|
|
371
|
+
| [[think-in-code-blog]] | blog | "Think in Code" by B. Mert Köseoğlu |
|
|
372
|
+
| [[gitingest]] | tool | Codebase-to-structured-text for LLM context |
|
|
373
|
+
| [[gitreverse]] | tool | Repo-to-synthetic-prompt (not adopted) |
|
|
374
|
+
| [[github-sub-issues-docs]] | documentation | GitHub official docs on sub-issues (parent-child hierarchies) |
|
|
375
|
+
| [[github-issue-dependencies-docs]] | documentation | GitHub official docs on issue dependencies (blocked-by/blocking) |
|
|
376
|
+
| [[gh-sub-issue-extension]] | github-repo | Community gh CLI extension for sub-issue management |
|
|
377
|
+
| [[gh-cli-sub-issue-rfc]] | github-issue | Official gh CLI feature request for native sub-issue support |
|
|
378
|
+
| [[github-fork-issues-discussion]] | github-discussion | Fork issues enablement evolution (Jun-Dec 2025) |
|
|
379
|
+
| [[aider-repomap-tree-sitter]] | blog | Tree-sitter + graph ranking for LLM code context |
|
|
380
|
+
| [[swe-agent-aci]] | paper | Agent-Computer Interfaces concept (2024) |
|
|
381
|
+
| [[swe-bench]] | paper | Real-world software engineering benchmark |
|
|
382
|
+
| [[openhands-platform]] | paper | Open platform for AI developer agents |
|
|
383
|
+
| [[oss-guide-codebase-exploration]] | blog | Human-centric OSS codebase exploration guide |
|
|
384
|
+
| [[cursor-shadow-workspace-2024]] | engineering-blog | Shadow Workspace: hidden Electron window LSP pre-validation |
|
|
385
|
+
| [[cursor-agent-best-practices-2026]] | engineering-blog | Agent best practices: Plan Mode, hooks, skills, context management |
|
|
386
|
+
| [[cursor-harness-april-2026]] | engineering-blog | Harness evolution: dynamic context, Keep Rate, error classification |
|
|
387
|
+
| [[cursor-shipped-coding-agent-2026]] | engineering-blog | Composer system architecture, MoE, latency, sandboxing |
|
|
388
|
+
| [[cursor-instant-apply-2024]] | engineering-blog | Speculative edits: 1000 tok/s, fast apply model, diff problem |
|
|
389
|
+
| [[cursor-fork-29b-2025]] | analysis | VS Code fork architecture, vertical agent thesis |
|
|
390
|
+
| [[codex-open-source-agent-2026]] | github-repo | Codex CLI: 79.2K stars, Rust, sandboxing, hooks, MCP, skills |
|
|
391
|
+
| [[claude-code-architecture-vila-lab-2026]] | academic-paper | VILA-Lab arxiv 2604.14228: comprehensive Claude Code architecture analysis |
|
|
392
|
+
| [[claude-code-architecture-qubytes-2026]] | blog | Qubytes: five-layer architecture breakdown (agent loop, permissions, tools, state, compaction) |
|
|
393
|
+
| [[claude-code-architecture-karaxai-2026]] | blog | KaraxAI: full stack walkthrough — CLAUDE.md, skills, plugins, MCP, hooks |
|
|
394
|
+
| [[codeact-apple-2024]] | paper | CodeAct: 20% higher success rate, 30% fewer turns (ICML 2024) |
|
|
395
|
+
| [[cloudflare-codemode]] | official-docs | Cloudflare Code Mode: TypeScript execution layer, Worker sandbox |
|
|
396
|
+
| [[executor-rhyssullivan]] | github-repo | Executor: local-first TS runtime, 1.3K stars, cross-agent tool catalog |
|
|
397
|
+
| [[colinmcnamara-context-optimization-codemode]] | blog | Context optimization: sub-agents vs TypeScript interfaces |
|
|
398
|
+
| [[fallow-rs-codebase-intelligence]] | github-repo | Fallow: Rust-native TS/JS codebase intelligence, 1.7K stars, MIT. Dead code, duplication, complexity, boundaries, MCP server |
|
|
399
|
+
| [[google-antigravity-official-blog]] | engineering-blog | Google Antigravity: agent-first IDE, Manager View, Artifacts, Skills |
|
|
400
|
+
| [[google-antigravity-wikipedia]] | encyclopedia | Antigravity: VS Code fork, Gemini 3.1, Windsurf $2.4B acquisition |
|
|
401
|
+
| [[cursor-vs-antigravity-2026]] | comparison | Cursor v2.6 vs Antigravity v1.20: centaur vs manager, benchmarks |
|
|
402
|
+
| [[Source: Build-Time Prompt Compilation Architecture]] | architecture-analysis | Real tools: DIY pipeline (js-yaml + PromptWeaver + per-model renderers), replaces fabricated PromptKit PackC |
|
|
403
|
+
| [[Source: SwirlAI Agent Skills Progressive Disclosure]] | newsletter | Three-tier progressive disclosure, ecosystem adoption speed, skills as system design pattern (Mar 2026) |
|
|
404
|
+
| [[Source: Claude API Agent Skills Overview]] | official-docs | Filesystem-based skill architecture, three loading levels, security model |
|
|
405
|
+
| [[Source: Blake Crosley Agent Architecture Guide]] | engineering-blog | Complete harness pattern: hooks, skills, subagents, multi-agent orchestration, production results (Apr 2026) |
|
|
406
|
+
| [[Source: Vercel Labs agent-browser]] | official-repo | agent-browser: 31.4K stars, Apache 2.0, Rust-native browser automation CLI for AI agents — snapshot + refs, annotated screenshots, structured diff. Replaces browser-harness for P30. |
|
|
407
|
+
| [[Source: browser-harness CDP Harness]] | official-repo | browser-harness: 9.4K stars, MIT, thin CDP harness — self-healing LLM-to-Chrome bridge. SUPERSEDED by agent-browser for P30 (May 2026). |
|
|
408
|
+
| [[Source: AgentBus Jinja2 Prompt Pipelines]] | engineering-blog | Jinja2 templating: inheritance, conditionals, loops, pipeline runner |
|
|
409
|
+
| [[Source: TianPan Prompt Caching Architecture]] | engineering-blog | Multi-tier caching: semantic→prefix→full, 60-90% savings, cache boundary control |
|
|
410
|
+
| [[Source: Arxiv — Don't Break the Cache]] | academic-paper | PwC evaluation: 41-80% cost reduction, system-prompt-only caching optimal |
|
|
411
|
+
| [[sentrux-github-repo]] | github-repo | sentrux: 1.9k stars, 52 languages, MCP server, 5 metrics, MIT |
|
|
412
|
+
| [[sentrux-dev-landing]] | website | sentrux.dev: landing page, cybernetic feedback loop, pricing |
|
|
413
|
+
| [[sentrux-docs-quality-signal]] | documentation | Quality Signal formula, geometric mean justification, Nash theorem |
|
|
414
|
+
| [[sentrux-docs-root-cause-metrics]] | documentation | 5 metrics mathematical definitions, graph-theoretic completeness |
|
|
415
|
+
| [[sentrux-docs-rules-engine]] | documentation | .sentrux/rules.toml constraint system with layers and boundaries |
|
|
416
|
+
| [[sentrux-docs-pro-architecture]] | documentation | Pro tier: runtime dylib, Ed25519 licenses, $15/mo, per-user watermarking |
|
|
417
|
+
| [[ts-strict-mode-rishikc]] | article | TypeScript strict mode guide: 8+ sub-flags, migration strategy, ESLint pairing |
|
|
418
|
+
| [[ts-runtimes-comparison-betterstack]] | article | Node.js vs Deno vs Bun: benchmarks, tooling, security, TS support (2026) |
|
|
419
|
+
| [[barrel-files-tkdodo]] | article | Barrel files cause 68% module bloat, circular imports — stop using in app code |
|
|
420
|
+
| [[ts-monorepo-koerselman]] | article | Monorepo patterns: built-package vs internal-packages, Turborepo, ESM, IDE setup |
|
|
421
|
+
| [[vitest-official]] | official-docs | Vite-native test framework, Jest-compatible, v4.1.5 |
|
|
422
|
+
| [[ts-folder-structure-mingyang]] | article | Production-grade Node.js/TS folder structure: Clean Architecture approach |
|
|
423
|
+
| [[ts-best-practices-2025-devto]] | article | TS best practices 2025: type safety, advanced types, linting, tooling |
|
|
424
|
+
| [[ts-result-error-handling-kkalamarski]] | article | Result monad pattern for declarative error handling in TypeScript |
|
|
425
|
+
|
|
426
|
+
## Questions
|
|
427
|
+
|
|
428
|
+
| Question | Answer Summary |
|
|
429
|
+
|----------|---------------|
|
|
430
|
+
| [[mvp-implementation-blueprint]] | **UPDATED (May 2026)**: Skill-First v2. 3 TS files + 12 skill files. 19 files total, ~8 weeks. |
|
|
431
|
+
| [[how-to-enable-semantic-code-search-now]] | **IMPLEMENTED (L1+L2)**: ck installed, index built, skill created, grep tool intercepted via pi extension, file watcher auto-reindexes |
|
|
432
|
+
|
|
433
|
+
## Flows
|
|
434
|
+
|
|
435
|
+
| Flow | Summary |
|
|
436
|
+
|------|---------|
|
|
437
|
+
| [[harness-wiki-pipeline]] | Read-first/write-after data flow between harness and wiki |
|