wikifier 0.3.3__tar.gz → 4.1.2__tar.gz
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.
- {wikifier-0.3.3 → wikifier-4.1.2}/MANIFEST.in +6 -3
- wikifier-4.1.2/PKG-INFO +423 -0
- wikifier-4.1.2/README.md +391 -0
- wikifier-4.1.2/diagnostics.html +410 -0
- wikifier-4.1.2/docs/RELEASE_NOTES.md +80 -0
- {wikifier-0.3.3 → wikifier-4.1.2/docs}/spec.md +6 -5
- wikifier-4.1.2/docs/v0.4-Execution-Plan.md +258 -0
- wikifier-4.1.2/docs/v0.4-execution-plan.md +182 -0
- wikifier-4.1.2/index.html +657 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/pyproject.toml +2 -2
- wikifier-4.1.2/skills/run.md +246 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/wikifier/__init__.py +24 -3
- wikifier-4.1.2/wikifier/cli.py +1201 -0
- wikifier-4.1.2/wikifier/contracts.py +1953 -0
- wikifier-4.1.2/wikifier/daemon.py +482 -0
- wikifier-4.1.2/wikifier/diagnostics.py +292 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/wikifier/gap1_validation_harness.py +703 -8
- wikifier-4.1.2/wikifier/health.py +1520 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/wikifier/import_cache.py +741 -0
- wikifier-4.1.2/wikifier/locking.py +136 -0
- wikifier-4.1.2/wikifier/mcp/__init__.py +9 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/wikifier/mcp/server.py +238 -97
- wikifier-4.1.2/wikifier/parsers/__init__.py +0 -0
- wikifier-4.1.2/wikifier/parsers/cdia.py +1019 -0
- wikifier-4.1.2/wikifier/parsers/javascript.py +2490 -0
- wikifier-4.1.2/wikifier/parsers/python.py +782 -0
- wikifier-4.1.2/wikifier/resolution.py +1739 -0
- wikifier-4.1.2/wikifier/scripts/exclude_patterns.txt +6 -0
- wikifier-4.1.2/wikifier/scripts/file_health.md +23 -0
- wikifier-4.1.2/wikifier/scripts/library.md +24 -0
- wikifier-4.1.2/wikifier/scripts/monitored_paths.txt +1 -0
- wikifier-4.1.2/wikifier/scripts/pending_updates.md +15 -0
- wikifier-4.1.2/wikifier/scripts/wikifier.sh +2776 -0
- wikifier-4.1.2/wikifier.egg-info/PKG-INFO +423 -0
- wikifier-4.1.2/wikifier.egg-info/SOURCES.txt +72 -0
- wikifier-0.3.3/PKG-INFO +0 -276
- wikifier-0.3.3/README.md +0 -244
- wikifier-0.3.3/index.html +0 -409
- wikifier-0.3.3/skills/run.md +0 -78
- wikifier-0.3.3/wikifier/cli.py +0 -592
- wikifier-0.3.3/wikifier/daemon.py +0 -363
- wikifier-0.3.3/wikifier/health.py +0 -620
- wikifier-0.3.3/wikifier/scripts/wikifier.sh +0 -498
- wikifier-0.3.3/wikifier.egg-info/PKG-INFO +0 -276
- wikifier-0.3.3/wikifier.egg-info/SOURCES.txt +0 -40
- {wikifier-0.3.3 → wikifier-4.1.2}/CONTRIBUTING.md +0 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/LICENSE +0 -0
- {wikifier-0.3.3 → wikifier-4.1.2/docs}/Basis-v0.3.md +0 -0
- {wikifier-0.3.3 → wikifier-4.1.2/docs}/TRADEOFFS.md +0 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/setup.cfg +0 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/wikifier/__main__.py +0 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/wikifier/parsers/bree.py +0 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/wikifier/scripts/wikifier.bat +0 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/wikifier/scripts/wikifier.ps1 +0 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/wikifier.egg-info/dependency_links.txt +0 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/wikifier.egg-info/entry_points.txt +0 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/wikifier.egg-info/requires.txt +0 -0
- {wikifier-0.3.3 → wikifier-4.1.2}/wikifier.egg-info/top_level.txt +0 -0
|
@@ -2,11 +2,14 @@ include wikifier/scripts/*
|
|
|
2
2
|
include README.md
|
|
3
3
|
include LICENSE
|
|
4
4
|
include CONTRIBUTING.md
|
|
5
|
-
include spec.md
|
|
6
|
-
include Basis-v0.3.md
|
|
7
|
-
include TRADEOFFS.md
|
|
5
|
+
include docs/spec.md
|
|
6
|
+
include docs/Basis-v0.3.md
|
|
7
|
+
include docs/TRADEOFFS.md
|
|
8
|
+
include docs/RELEASE_NOTES.md
|
|
9
|
+
include docs/v0.4-*.md
|
|
8
10
|
include skills/run.md
|
|
9
11
|
include index.html
|
|
12
|
+
include diagnostics.html
|
|
10
13
|
global-exclude *.pyc
|
|
11
14
|
global-exclude __pycache__
|
|
12
15
|
prune .github
|
wikifier-4.1.2/PKG-INFO
ADDED
|
@@ -0,0 +1,423 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wikifier
|
|
3
|
+
Version: 4.1.2
|
|
4
|
+
Summary: Agent-first, zero-dependency, self-maintaining codebase documentation & change tracking system
|
|
5
|
+
Author-email: Aron Amos <aron@example.com>
|
|
6
|
+
Maintainer: Aron Amos
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/IronAdamant/wikifier
|
|
9
|
+
Project-URL: Repository, https://github.com/IronAdamant/wikifier
|
|
10
|
+
Project-URL: Documentation, https://github.com/IronAdamant/wikifier#readme
|
|
11
|
+
Project-URL: Bug Tracker, https://github.com/IronAdamant/wikifier/issues
|
|
12
|
+
Keywords: wiki,documentation,llm,agent,mcp,codebase,health-matrix,zero-dependency,shell
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Operating System :: OS Independent
|
|
23
|
+
Classifier: Topic :: Software Development :: Documentation
|
|
24
|
+
Classifier: Topic :: Software Development :: Version Control
|
|
25
|
+
Classifier: Topic :: Text Processing :: Markup :: Markdown
|
|
26
|
+
Requires-Python: >=3.8
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Provides-Extra: mcp
|
|
30
|
+
Requires-Dist: mcp>=1.0.0; extra == "mcp"
|
|
31
|
+
Dynamic: license-file
|
|
32
|
+
|
|
33
|
+
# Wikifier v4.0
|
|
34
|
+
|
|
35
|
+
[](https://opensource.org/licenses/MIT)
|
|
36
|
+
[](https://pypi.org/project/wikifier/)
|
|
37
|
+
[](https://github.com/IronAdamant/wikifier/stargazers)
|
|
38
|
+
|
|
39
|
+
**Agent-first • Zero-dependency • LLM-operated codebase wiki**
|
|
40
|
+
|
|
41
|
+
Wikifier turns any codebase (tiny scripts → large monorepos) into a living, token-efficient map that LLMs/agents operate autonomously.
|
|
42
|
+
|
|
43
|
+
### Intended Use: Agent-to-Agent Wiki (Token-Saving Only)
|
|
44
|
+
|
|
45
|
+
This is meant **strictly** as an agent-to-agent wiki layer.
|
|
46
|
+
|
|
47
|
+
- Primary purpose: save tokens for agents/LLMs.
|
|
48
|
+
- You (the agent) can look up files quickly via the health matrix / file wikis / barrels / incremental status instead of reading full sources.
|
|
49
|
+
- Autonomously update wiki summaries and create new ones as you work (edit source → `record-change` → update the wiki entry → `mark-green`).
|
|
50
|
+
- Create new wiki-maintained files/docs as needed during agent sessions.
|
|
51
|
+
- Workflow for agents: `wikifier check-changes`, read the small `file_health.md` + `pending_updates.md`, prioritise, edit, `record-change`, `mark-green`, `update-maps` when relevant.
|
|
52
|
+
- **It shouldn't be used for anything more than that.** Not a general human documentation system, not an IDE replacement, not for broad non-agent use.
|
|
53
|
+
|
|
54
|
+
See the LLM workflow in `--help` and `skills/run.md` for the exact loop. All M5+ evidence was produced by agents operating in exactly this mode.
|
|
55
|
+
|
|
56
|
+
### M5 Broad Real-World Dogfood Complete — 85-90%+ (June 2026)
|
|
57
|
+
|
|
58
|
+
The M5 phase (broad real-world dogfood on the user's prepared external 5k–50k+ creative projects) has been fully executed.
|
|
59
|
+
|
|
60
|
+
**Execution ("same as before")**:
|
|
61
|
+
- 4 parallel background subagents covering all targets: RecipeLab/alt (BRC ~20+ named services/chains exact reproduction), ConsistencyHub + CoordinationHub + core MCPs (Chisel/Trammel/stele-context cross), ~18+ other customs + scoped OSS (Babylon.js etc.), LargeScale (llvm-project heavily scoped subs ~79k files in llvm/ + clang/lib, ~540k total monitored when expanded, plus worktree consistency copy).
|
|
62
|
+
- Full workflows on externals only (WIKIFIER_PROJECT_ROOT / project_root= always, absolute monitored_paths, scoped --directory where needed, python-primary for large streaming, cross chisel/stele/trammel where applicable).
|
|
63
|
+
- Strict protocols: FRESH 3 hygiene before every Findings edit, `record-change` + `mark-green`, subagent_id tagging, 9 Guiding Principles (esp. #1 spectrum, #7 multi-agent, #8 M5 boundary, #9 measurable), 8-step DF traces, honest calibration, zero self-dogfood on Wikifier source, main tree 100% clean.
|
|
64
|
+
|
|
65
|
+
**Key Evidence & Outcomes** (see `Findings/` for full):
|
|
66
|
+
- `M5-Dogfood-Progress.md` (1192 lines): full diaries from all 4 agents + launch/status/synth notes. Subid counts: 5/6/10/15.
|
|
67
|
+
- `M5-Dogfood-Assessment-Report.md`, `p6_real_world_validation_report.md`, `M5.1-cross-hardening-analysis.md`.
|
|
68
|
+
- Main health: 4+ 🟢 on M5 keys (Progress, Milestones, Assessment, p6, M5.1-cross, wikifier.sh). Targets: lean "Pruned 0", expected BRC/MISSING as designed stress (alt BRC signals exact match prior snapshot), no cross-pollution after M5.1 fixes.
|
|
69
|
+
- Highlights: alt BRC ~20+ from named (AdversarialScaffoldGenerator etc.), llama core 5673u/8e (new py edges), Consistency 82162 edges + stele self 108 docs/30k sym/6 mismatches + target trammel plans, Other breadth with 185u/22g Rust etc. + Babylon 0-miss + graceful large-batch timeout handling, Large 79k+ C++ (python-primary streaming success on 5k dir, 0 sub-entries in health, chisel C++ 0% observed vs prior 168k u/4min, stele path-prefix exercised, barrel 0 on pure C++).
|
|
70
|
+
- Honest calibration (per Assessment-Report): **85-90%+** toward actual 95%+ / 5-10yr viability ("as close as possible without [literal more] dogfooding"). 7-criteria and 9 GPs upheld with rich measurable evidence. Remaining gaps require M5.3: literal multi-month (≥72h concurrent MA+daemon on 3+ targets: alt/Consistency/llvm-llama priority) for full "3" 0-corr under churn, obs after months, full OSS depth, central 95% scoring (see 10 DoD + M5.3 plan in Assessment).
|
|
71
|
+
|
|
72
|
+
**M5.1/M5.2 Hardening** (using existing snapshot data only, no new dogfood during phases): MCP reliability (timeouts/caching), health.py auto-prune + under-root scoping for external, cli resilience, cross-MCP analysis + safe fixes (chisel/stele/trammel), agent doom-loop handling patterns. Artifacts produced.
|
|
73
|
+
|
|
74
|
+
See the final synth in `Findings/M5-Dogfood-Progress.md` and full Assessment-Report for metrics, 9GP/DF traces, gaps/DoD, M5.3 plan.
|
|
75
|
+
|
|
76
|
+
**v4.0 Release**: M5 (broad real-world dogfood 85-90%+) is complete, including M5.1/M5.2 hardening for MCP reliability and external use, M5.3 sustained foundations (monitors, subagents, agent-to-agent wiki scope), and recent MCP/skills updates. With zero-dependency explicitly enforced, the agent-to-agent wiki model (token-efficient lookup + autonomous updates) mature, and full protocol in skills/run.md v0.5, this is the 4.0 release.
|
|
77
|
+
|
|
78
|
+
**v4.0.1 (2026-06)**: Post-4.0 cleanup + small robustness (patch level; no major addition or scope change — remains 4.x per direction).
|
|
79
|
+
- `health.py`: `_coerce_root` (accepts str | Path for `load_health`/`save_health`/`upsert_entry` etc.; direct Python lib use with WIKIFIER_PROJECT_ROOT or "." now robust, no TypeError). Added `SUPERSEDED_PATTERNS` + prune logic (load/migrate/save/upsert) to aggressively drop superseded historical wiki-notes (e.g. early M5.3 "Cycle1 evidence" from before full gate) while preserving explicit 🔴 Red "DELETED" audit records as intentional, observable markers for agents.
|
|
80
|
+
- `pending_updates.md`: cleaned (removed full `grep --help` preamble corruption from prior diagnostics; only real audit + mtime notes remain).
|
|
81
|
+
- Repo: removed tracked + fs junk (old `test-js-flat/`, `Findings/wave-evidence/*` subagent/phase diaries) via rm + `git rm --cached`; lingering monitors killed (safe pids); launcher banners/headers (`wikifier.sh`, `scripts/wikifier.sh`) now consistently v4.0.
|
|
82
|
+
- Monitored paths + health matrix kept lean/specific (no broad `.` or external pollution). Main health: 4+ 🟢 on core (README, mcp/*, wikifier.sh, --help, M5 Findings) + 1 intentional 🔴 Red audit + unrelated mtime Yellow.
|
|
83
|
+
- Version to 4.0.1. All under M5 protocols (FRESH before this README edit, record+mark, subid, zero-dep, main clean, external-only for any dogfood). See cleanup commit 4c37dd5 + `health --summary`.
|
|
84
|
+
|
|
85
|
+
**v4.1.0 (2026-06)**: Minor bump for project structure cleanup and reorganisation (no behaviour changes).
|
|
86
|
+
|
|
87
|
+
- Organised documentation: moved historical and non-core `.md` files (Basis-v0.3.md, spec.md, TRADEOFFS.md, RELEASE_NOTES.md, the v0.4 execution plans) into a new `docs/` folder. Root directory is now much cleaner, containing only the essential files: README.md, CHANGELOG.md, CONTRIBUTING.md, the core wiki state files (file_health.md, library.md, pending_updates.md), and .mcp.json.wiki.md.
|
|
88
|
+
- Updated all references/links in README.md, index.html (the dashboard), MANIFEST.in, and pyproject.toml.
|
|
89
|
+
- This is a pure organisational improvement to make the project easier to navigate (especially for the human investigation layer via the dashboards, while keeping agent-to-agent primary via the text files and tools). No changes to monitored_paths.txt (still only tracks the key agent-wiki files), no impact on functionality or the health matrix.
|
|
90
|
+
|
|
91
|
+
**v4.1.1 (2026-06)**: Very minor patch for human investigation layer separation (enforcement + hygiene; no new behaviour or scope).
|
|
92
|
+
|
|
93
|
+
- Enforced correct deployment: `wikifier init` (cli.py + wikifier.sh) now copies *only* `index.html` (the clean, data-driven human wiki viewer for the *target project's* agent-maintained wiki: chart, files+descriptions, copies). `diagnostics.html` (Wikifier's own maintainer/refactor/porter hub with architecture, full maps, porting checklist and *this tool's* source tree) is no longer copied into target roots — it was causing "stale" + "pointing at wrong folder" (Wikifier tree instead of the actual project) when opened after `update-maps` in external projects (e.g. RecipeLab_alt).
|
|
94
|
+
- Updated `index.html` template: "For maintainers" link is now a safe informative span (with tooltip) so copied instances in targets don't have broken links.
|
|
95
|
+
- Refreshed `diagnostics.html` content: added prominent disclaimer that the file map is for Wikifier *tool* refactors only (not host project); updated tree to current layout (post-structure org, human layer split, health robustness); fixed Two-Page description and section numbering.
|
|
96
|
+
- Added guidance in the human dashboard: old `diagnostics.html` in project roots (from prior inits) can be safely deleted.
|
|
97
|
+
- Synced descriptions in README.md, `skills/run.md`, `wikifier/mcp/README.md`.
|
|
98
|
+
- All under protocol (FRESH, record-change + mark-green with subid, main clean). Version to 4.1.1. See the separation-fix commit.
|
|
99
|
+
|
|
100
|
+
**v4.1.2 (2026-06)**: Very minor patch for mapping / update speed hygiene (no new behaviour or scope; pure internal improvements for large projects).
|
|
101
|
+
|
|
102
|
+
- Faster candidate collection everywhere that drives check-changes, monitor, and update-maps (Python-primary paths): switched to `os.scandir`-based recursive scan (std lib, avoids walk overhead) + git `ls-files --cached --others --exclude-standard` fast-path when in a git repo (dramatically faster on real monorepos; falls back cleanly).
|
|
103
|
+
- Consistent early pruning: `exclude_patterns.txt` (user-editable, populated by init) now applied more broadly during mapping walks in both sh and Python collectors (venvs, caches, site-packages, etc. stop descent sooner).
|
|
104
|
+
- Small parser micro-opt: hoisted common regex compiles (docstring strip, dynamic import detectors) to module level in the Python parser (hot path on dirty files during maps).
|
|
105
|
+
- Minor sh-side note + skeleton for git fast collection in traditional update-maps path (real wins already flow through the Python collectors used by check-changes/streaming/lib/MCP).
|
|
106
|
+
- All changes FRESH-checked + recorded+marked under subid=mapping-speed-hygiene. Complements existing levers (monitored_paths.txt narrowing, --dir / directory= scoping, --stream / --max-files / --max-time streaming+budgets, python-primary, incremental dirty + BRC reverse index).
|
|
107
|
+
- Version to 4.1.2. See the speed-hygiene edits + this commit.
|
|
108
|
+
|
|
109
|
+
### Historical (pre-v4.0)
|
|
110
|
+
|
|
111
|
+
#### What's New in v0.3.3 (Gap #1)
|
|
112
|
+
|
|
113
|
+
**Gap #1 (Dependency Intelligence) is now at 95%+ "set & forget" on large messy monorepos — Swarm Complete**
|
|
114
|
+
|
|
115
|
+
This release marks the full closure of the 6 remaining Gap #1 last-mile items using a parallel multi-agent swarm (Grok Build 0.1 model):
|
|
116
|
+
|
|
117
|
+
- Barrel_v2 + res_meta_v1 + Persistent BarrelResolutionCache + Deep Invalidation at real monorepo scale
|
|
118
|
+
- Guaranteed Cycle / Graph Structure Persistence (delta short-circuit + v1 canonical default)
|
|
119
|
+
- External / Packaged Full-Update Robustness (Python-primary `run_full_update` + complex monorepo discovery)
|
|
120
|
+
- ACS + CIABRE Surfacing Uniformity (actionable recommendations everywhere + new low-conf filter)
|
|
121
|
+
- Extremely Creative / Dynamic Import Pattern Coverage (new CDIA detectors + Layer 3.5 dataflow + Python parity)
|
|
122
|
+
|
|
123
|
+
**Key Outcomes**:
|
|
124
|
+
- Full `python -m wikifier.gap1_validation_harness --gap1-health` now reports **GREEN**
|
|
125
|
+
- Selective barrel invalidation, real 5k+ dogfood, RecipeLab monorepo paths, and daemon integration all production-grade
|
|
126
|
+
- All changes strictly zero-dependency, scalable to 50k+ files, and additive
|
|
127
|
+
|
|
128
|
+
See the detailed agent diary entries in `Findings/m2_rem_08_and_v0.4_progress_tracker.md` for the complete swarm journey.
|
|
129
|
+
|
|
130
|
+
### Broader M2 Progress — Phase 6-7 95%+ Swarm Wave (2026-05-28)
|
|
131
|
+
|
|
132
|
+
Significant progress on detailed per-Workstream A–E durability and external long-pole execution toward genuine 95%+ "set & forget":
|
|
133
|
+
|
|
134
|
+
- Dual independent reviewers (77 + 78) confirmed the full 9-step hygiene-first merge playbook **all PASS**.
|
|
135
|
+
- WS A–E durability slices (71–75) completed with concrete metrics on real external 5k+ creative proxies (main Wikifier self-host + RecipeLab 1637/269) + harness 25k–50k generators under long-load chaos.
|
|
136
|
+
- Dedicated external long-pole agent (76) executed extended proxy work on the **real 5k+ main Wikifier creative target** with streaming + rich bounded A3 summaries (`format=summary`) as the normal/default path, delivering strong reproducible artifacts (health matrices over "days", high partials usage, 0 trust failures, ACS/CIABRE explain-all, correct reverse survival, etc.).
|
|
137
|
+
- Evidence layer (`Findings/wave-evidence/`) updated with rich diaries from the long-horizon agents (notably 72 ~6.8 h, 71, 75, 76).
|
|
138
|
+
|
|
139
|
+
**Current honest calibration** (per the 7 exact 85% criteria + long-term scalable plan): **82–87% toward 95%+**, **0/7 strict 85%**. The dominant remaining gap is the literal multi-day (3–7 d) high-trust autonomous external long-pole on real 5k+ creative monorepos with the new paths as the unquestioned normal/default (crit4/Gate3), as confirmed by 76/77/78 and prior reviewers. Proxies are strong; literal wallclock multi-day high-trust autonomous execution remains open.
|
|
140
|
+
|
|
141
|
+
**Re-alignment Note (late 2026-05-28)**: Per explicit user direction, M1–M4 are the feature-building and technical gap-closing phases. M5 is reserved for broad dogfooding across multiple real-world projects the user has already prepared. The 80/82/83/84/85 swarm work on the real 5k+ main Wikifier creative self-host represents meaningful M2 feature completion and real-usage exercising during the building phase, not final M5 validation. The previous strict 0/7 scoring pressure is being de-emphasized while features are still being completed.
|
|
142
|
+
|
|
143
|
+
See `Findings/m2-85-to-95-agent-swarm-plan.md`, the updated tracker, `wave-evidence/`, and the long-term scalable plan for full details. All work under strict discipline ("3" untouched, main clean, honest no-overclaim).
|
|
144
|
+
|
|
145
|
+
### M3 – Agent Interface & Ergonomics (Feature-Building Complete)
|
|
146
|
+
|
|
147
|
+
The M3 phase — polished public Python library surface, rigorous testable Agent Protocol (v0.5 baseline with mandatory long-running/swarm/MA + daemon + human behaviors), complete versioning + additive migrations, thin-consumer parity (≥0.92 fidelity), and comprehensive agent-builder documentation + patterns across the full scalability spectrum (tiny scripts to 50k+ creative monorepos with barrels, dynamic/conditional imports, workspaces, symlinks) — is now complete as a pure feature-building phase under the 9 Guiding Principles.
|
|
148
|
+
|
|
149
|
+
- Central deliverable: `Findings/M3-80-95-Completion-Package-Handoff.md` (exact C8/B8 model; verbatim 9 Guiding Principles + 80%/90-95% DoD; FRESH LAST "3" hygiene with multiple verbatim 0-def grep logs on active non-guardian code; full evidence index with absolute paths to all E1-E8 / F1-F8 / G1-G4 swarm artifacts + C5 heavy 50k+ creative validation on allowed targets only; honest 48-55%+ calibration).
|
|
150
|
+
- Sacred partials/continuation ("3" / test_partial_continuation_workflow_25k deep-proof track at harness:3109) elevated as the natural scalable ergonomics path for 50k+ creative work via safe citation and pattern replication only — the implementation track itself remains untouched.
|
|
151
|
+
- Strict execution: zero new dependencies, main source 100% clean, M5 boundary absolute (all serious validation on harness M3 suites + RecipeLab + user-designated external creative monorepos; no sustained dogfood on the Wikifier project itself).
|
|
152
|
+
|
|
153
|
+
See `Findings/Milestones-Overview.md` (now updated with 80-95% closure + Gamma coordination) and the original plan/checklist in `Findings/m3-*.md`.
|
|
154
|
+
|
|
155
|
+
### M4 – State Management & Long-Term Scale (80-95% Complete)
|
|
156
|
+
|
|
157
|
+
M4, the feature-building phase for years-scale autonomous "set & forget" operation on massive creative monorepos, is now at 80-95% completion.
|
|
158
|
+
|
|
159
|
+
**Delivered durability foundations** (E1–E5 + D6/C6 bases, strong evidence on allowed targets):
|
|
160
|
+
|
|
161
|
+
- Reversible, bounded compaction and O(changed) state for 50k+ creative monorepos with barrels, dynamic/conditional imports, workspaces, symlinks, high churn, and partials/"3" (E1 prototype + B1/B2/D1/D6 Pattern 1; <15% growth / 99%+ success / 0 corruption on "3" paths in 50k+ sims; 83%+ compaction in 90-sim-day C5 runs).
|
|
162
|
+
- Rich long-horizon observability and diagnostics that remain useful after months of data (E2/D3/E3).
|
|
163
|
+
- Complete additive versioning and migration policy for all M4 state shapes (E2/D3).
|
|
164
|
+
- Comprehensive years-scale agent-builder patterns and documentation (E5 Guide extending D6 4 patterns + C6 base with real E1/E3/C5 metrics from harness 25k-50k+, RecipeLab, and external 50k+ proxies; full 8-step/9GP/spectrum matrices; honest limitations).
|
|
165
|
+
|
|
166
|
+
**Evidence** (harness extended 25k-50k+ creative generators with full target patterns + partials/"3" + concurrent chaos, RecipeLab, designated external 50k+ proxies):
|
|
167
|
+
|
|
168
|
+
- 0 "3" corruption on 100+ partials_3 exercised.
|
|
169
|
+
- Bounded growth (e.g. ~25 MB mem / 80 MB disk in 50k+ 90-sim-day).
|
|
170
|
+
- Sub-2 ms average recoveries, actionable obs trends, high Prin compliance (0.87–1.0 on relevant).
|
|
171
|
+
|
|
172
|
+
**M5 Preparation** (explicit central handoff):
|
|
173
|
+
|
|
174
|
+
See `Findings/M4-80-95-Completion-Package-Handoff.md` for the full handoff, including known limitations and the precise mandate for M5: literal multi-month (toward years) uninterrupted autonomous "set & forget" on user-prepared real 5k-50k+ creative projects under the 9 Guiding Principles (full patterns + sustained concurrent MA+daemon+human; specific metrics for boundedness, recovery, obs usefulness, versioning, "3" fidelity, 95%+ usefulness + 5-10yr viability).
|
|
175
|
+
|
|
176
|
+
M4 = capability + proxy evidence on allowed targets (harness/RecipeLab/externals). Literal broad real-user multi-month dogfood = M5 exclusive.
|
|
177
|
+
|
|
178
|
+
**Process**: 7–8 agent swarms (E1–E8 + Gamma coordination), visible execution, full discipline (multiple independent FRESH LAST "3" with verbatim 0-def logs, zero new dependencies, M5 boundary, 8-step DF + 9 GPs everywhere, rich diaries with verbatim evidence).
|
|
179
|
+
|
|
180
|
+
See the central handoff, `Findings/M4-Years-Scale-Agent-Builder-Guide.md`, E7 REV1 report, E1 prototype reference (in e1 worktree), and updated Milestones for details.
|
|
181
|
+
|
|
182
|
+
**M5 status (June 2026)**: Broad real-world dogfood round complete (see new top-level M5 section above). 85-90%+ achieved "as close as possible without (more) dogfooding". M5.3 (literal multi-month sustained on 3+ targets) remains for the final 95%+/5-10yr gate per the Assessment-Report DoD.
|
|
183
|
+
|
|
184
|
+
### What's New in v0.3.2
|
|
185
|
+
|
|
186
|
+
**Gap #1 (Dependency Intelligence Quality) is now substantially closed (~94–96%)**
|
|
187
|
+
|
|
188
|
+
This release completes the major M2-Rem-08 deep closure work on dependency intelligence:
|
|
189
|
+
|
|
190
|
+
- **Major Barrel Intelligence Improvements** (6 parallel specialized agents):
|
|
191
|
+
- Barrel following depth increased (2 → 3)
|
|
192
|
+
- Much smarter barrel detection (now catches real-world import-style index barrels)
|
|
193
|
+
- Full `barrel_chain` tracking and visibility across the system
|
|
194
|
+
- Modern `package.json` `"exports"` map support for resolution and barrel following
|
|
195
|
+
- Significant performance improvements for barrel probing
|
|
196
|
+
- Conditional context now properly propagates through barrel chains
|
|
197
|
+
|
|
198
|
+
- **Cycle Detection (Complete Stack)**
|
|
199
|
+
- Full cycle detection with DFS + deduplication
|
|
200
|
+
- Exposed via `wikifier cycles`, `get_cycles()` MCP tool, "Circular Dependencies" section in `library.md`, and visual warnings in Mermaid graphs
|
|
201
|
+
|
|
202
|
+
- **Overall**
|
|
203
|
+
- Rich dependency metadata now flows reliably everywhere
|
|
204
|
+
- `get_dependencies()` and `get_dependents()` are dramatically more trustworthy
|
|
205
|
+
- Dependency intelligence is no longer the primary blocker for autonomous agents
|
|
206
|
+
|
|
207
|
+
This is a significant patch release that brings the dependency layer to a production-useful level for most real-world projects. The main remaining practical challenge is now `update-maps` performance at very large scale.
|
|
208
|
+
|
|
209
|
+
**Other highlights carried from v0.3.1**:
|
|
210
|
+
- Health Matrix Auto-Healing (`heal-stubs`, `healing-stats`, etc.)
|
|
211
|
+
- `WIKIFIER_DEBUG=1` for first-pass transparency
|
|
212
|
+
- Richer cache and reverse dependency support
|
|
213
|
+
|
|
214
|
+
> **GitHub**: https://github.com/IronAdamant/wikifier
|
|
215
|
+
> **PyPI**: https://pypi.org/project/wikifier/
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## 🚀 Installation
|
|
220
|
+
|
|
221
|
+
**Recommended — via pip:**
|
|
222
|
+
|
|
223
|
+
```bash
|
|
224
|
+
pip install wikifier
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
Then run:
|
|
228
|
+
|
|
229
|
+
```bash
|
|
230
|
+
wikifier init
|
|
231
|
+
wikifier check-changes
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
Then (after init) open `index.html` in your browser for the live (human) dashboard — health matrix, Mermaid tree, and export/copy text for LLM use. It lives inside your project folder alongside the MCP setup.
|
|
235
|
+
|
|
236
|
+
---
|
|
237
|
+
|
|
238
|
+
**Alternative — from source:**
|
|
239
|
+
|
|
240
|
+
```bash
|
|
241
|
+
git clone https://github.com/IronAdamant/wikifier.git
|
|
242
|
+
cd wikifier
|
|
243
|
+
chmod +x wikifier.sh
|
|
244
|
+
./wikifier.sh init
|
|
245
|
+
./wikifier.sh check-changes
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
### Mandatory Rule for Every LLM / Grok Build Session (Protocol v0.4)
|
|
249
|
+
|
|
250
|
+
**Authoritative spec**: See `skills/run.md` (Wikifier Agent Protocol v0.4) + the full library surface design in `Findings/m2-full-closure-longterm-scalable-plan.md` (Workstream E).
|
|
251
|
+
|
|
252
|
+
Copy this (or the exact block from skills/run.md) into the **start of every new prompt**:
|
|
253
|
+
|
|
254
|
+
```text
|
|
255
|
+
You are now operating inside a Wikifier v0.4 managed codebase (Agent Protocol v0.4).
|
|
256
|
+
|
|
257
|
+
FIRST ACTIONS (mandatory):
|
|
258
|
+
1. If the Wikifier MCP server is connected, prefer its tools (get_project_status, check_changes, suggest_next_actions).
|
|
259
|
+
2. Else if the `wikifier` Python package is importable, prefer the direct library API:
|
|
260
|
+
from wikifier import check_changes, health, record_change, mark_green, suggest_next_actions, update_maps, discover_project_root
|
|
261
|
+
check_changes()
|
|
262
|
+
h = health(format="json") # or "summary"
|
|
263
|
+
... perform edit ...
|
|
264
|
+
record_change("path/to/file", "concise semantic reason (why, not what)")
|
|
265
|
+
... update wiki summary ...
|
|
266
|
+
mark_green("path/to/file")
|
|
267
|
+
if imports_or_structure_changed:
|
|
268
|
+
update_maps(directory="src/", use_python_primary=True)
|
|
269
|
+
suggest_next_actions(format="json")
|
|
270
|
+
health(format="json")
|
|
271
|
+
3. Otherwise fall back to shell: wikifier check-changes
|
|
272
|
+
... (see full mandatory workflow, I/O contracts, error handling, and scaling in skills/run.md)
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
**Python Library (clean public API, zero-dep)**: The preferred path for agents (when importable). Provides structured dicts, auto-locking, Python-primary paths for the full mandatory loop with no shell. See `__init__.py`, `cli.py` (Workstream E funcs), and the design doc. Submodule power access (e.g. `from wikifier.health import ...`) remains available.
|
|
276
|
+
|
|
277
|
+
> **Note**: This rule applies per-project. When using Wikifier on an external codebase (not the Wikifier repo itself), the agent should be told which project root to operate on (via `WIKIFIER_PROJECT_ROOT`, `--project-root`, or the `project_root` parameter on MCP tools / library calls). The library + protocol make sessions low-ambiguity across models.
|
|
278
|
+
|
|
279
|
+
---
|
|
280
|
+
|
|
281
|
+
### Using Wikifier on External Projects (Packaging & Setup Clarity — M2-Rem-06)
|
|
282
|
+
|
|
283
|
+
Wikifier is a **general-purpose** agent memory system. After `pip install wikifier` (or `pip install wikifier[mcp]`), the `wikifier` and `wikifier-mcp` console scripts become available globally. You can (and should) use them on **any** codebase — not just the Wikifier source tree.
|
|
284
|
+
|
|
285
|
+
#### Pip Install vs Running from Source
|
|
286
|
+
|
|
287
|
+
- **After `pip install wikifier`** (recommended for normal use):
|
|
288
|
+
- `wikifier` and `wikifier-mcp` commands are in your PATH.
|
|
289
|
+
- The underlying implementation is the installed package (Python + shell scripts bundled).
|
|
290
|
+
- You still need to tell Wikifier **which project** you want to document (see Root Targeting below).
|
|
291
|
+
- `wikifier init --target /path/to/project` is the correct way to bootstrap state in an external folder.
|
|
292
|
+
|
|
293
|
+
- **Running from source** (development / contributing):
|
|
294
|
+
- Clone the repo, `chmod +x wikifier.sh`, and invoke `./wikifier.sh ...` or the scripts directly.
|
|
295
|
+
- Useful when you are actively modifying Wikifier itself.
|
|
296
|
+
|
|
297
|
+
**First-time setup on a new external codebase after pip install** (canonical flow, R6 improved):
|
|
298
|
+
```bash
|
|
299
|
+
# 1. Bootstrap directly into the target (auto-creates .wikifier/ marker, state files; CLI copies launcher if possible)
|
|
300
|
+
wikifier init --target /absolute/path/to/your/actual/monorepo-or-project
|
|
301
|
+
|
|
302
|
+
# 2. Optional but recommended: edit monitored_paths.txt to focus on src/, packages/, app/ etc. for large monorepos
|
|
303
|
+
# 3. Run the mandatory workflow (CLI auto-propagates project root from --target or env)
|
|
304
|
+
wikifier check-changes
|
|
305
|
+
|
|
306
|
+
# 4. For agent work / MCP (now robust, no sh-not-found even on pure pip installs)
|
|
307
|
+
WIKIFIER_PROJECT_ROOT=/absolute/path/to/your/actual/monorepo wikifier-mcp
|
|
308
|
+
# or pass project_root on individual tool calls
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
The R6 Monorepo & External UX wave made `init --target` fully functional (state in target, launcher copy, .wikifier marker), made CLI/MCP/sh consistently honor WIKIFIER_PROJECT_ROOT, and hardened pnpm/yarn/symlink/TS-ref edge cases in resolution. Much less manual setup for real-world large external codebases.
|
|
312
|
+
|
|
313
|
+
#### How Root Targeting Works (Decision Order for Agents)
|
|
314
|
+
|
|
315
|
+
Wikifier resolves the project root using this strict priority. Agents should follow it to avoid confusion:
|
|
316
|
+
|
|
317
|
+
1. `WIKIFIER_PROJECT_ROOT` environment variable (strongest — works for shell + all MCP tools)
|
|
318
|
+
2. Explicit `--project-root` (CLI) or `project_root` parameter on MCP tool calls
|
|
319
|
+
3. Upward directory walk looking for `monitored_paths.txt` or a `.wikifier/` directory
|
|
320
|
+
4. `.mcp.json` present in the workspace root (common in Grok Build, Cursor, etc.)
|
|
321
|
+
|
|
322
|
+
When the MCP server is started via `wikifier-mcp` (or through `.mcp.json`), it will usually auto-detect correctly if you `cd` into the project first. For maximum reliability on external dogfooding, always pass `project_root` or set the env var.
|
|
323
|
+
|
|
324
|
+
**M5 dogfood note (2026-06)**: Broad real-world dogfood round ("same as before") across all prepared external targets (RecipeLab/alt, ConsistencyHub + meta MCPs, 18+ customs, scoped OSS incl. Babylon, llvm-project 79k+ C++ heavily scoped subs + worktree) completed successfully with 4 parallel subagents.
|
|
325
|
+
|
|
326
|
+
- All targets used absolute `monitored_paths.txt` + `project_root=` / `WIKIFIER_PROJECT_ROOT=` + launcher.
|
|
327
|
+
- Python/MCP backend + M5.1 scoping/prune fixes prevented pollution; lean health + "Pruned 0" held; BRC/MISSING as designed stress signals reproduced exactly.
|
|
328
|
+
- Full evidence (diaries, 9GP traces, calibs 35-65%, 85-90%+ overall) in `Findings/M5-Dogfood-Progress.md` (1192 lines) + Assessment-Report.
|
|
329
|
+
|
|
330
|
+
The external robustness (abs paths, scoping, python-primary for 50k+) is now battle-tested at real 5k-79k+ creative scale.
|
|
331
|
+
|
|
332
|
+
This packaging + targeting story (plus M5.1 external hardening) was a major focus to eliminate friction for multi-target dogfood. See the M5 section above for summary and Findings for details.
|
|
333
|
+
|
|
334
|
+
---
|
|
335
|
+
|
|
336
|
+
### Scaling Wikifier — Recommended Patterns by Project Size (M2-Rem-06)
|
|
337
|
+
|
|
338
|
+
Wikifier is explicitly designed to scale from tiny scripts to massive monorepos. The guidance below is **prescriptive** — follow the patterns for your project size to stay fast and reliable.
|
|
339
|
+
|
|
340
|
+
#### Recommended Command Patterns
|
|
341
|
+
|
|
342
|
+
| Size | Preferred Interface | Health Query | `update-maps` Strategy | Key Additional Practices |
|
|
343
|
+
|-----------------------|---------------------------|-------------------------------------------|-------------------------------------------------|--------------------------|
|
|
344
|
+
| **Tiny / Small**<br>(< 300 files) | Shell or MCP | `wikifier health` (full table is fine) | `wikifier update-maps` (default incremental) | Use `.wiki.md` files next to sources for best `get_file_wiki`. Full rebuilds are cheap. |
|
|
345
|
+
| **Medium**<br>(300–2,000 files) | MCP preferred | `health --summary` or `health --dir src/` | `update_maps()` (incremental). Use `--full` only after large refactors or suspected cache corruption. | Prefer MCP tools (`get_project_status`, `suggest_next_actions`). Use directory filtering heavily. |
|
|
346
|
+
| **Large**<br>(2,000–8,000 files) | **MCP or Python library strongly recommended** | `health(format="json", directory="src/services/")` (via library or MCP) + `--summary` | Always incremental via `update_maps(..., use_python_primary=True)` (library). | Enable locking (automatic). Use library `check_changes` / `suggest_next_actions` for structured agent loops. |
|
|
347
|
+
| **Massive**<br>(8,000–30,000+ files) | **Python library or MCP only** | `health(format="summary", directory=...)` via `from wikifier import health` (or MCP) | `update_maps(directory=..., use_python_primary=True)` (library facade to pure path). | Library or MCP required. Directory scoping + summaries mandatory. Full protocol + locking + import_cache ACS/CIABRE. See Workstream E design. |
|
|
348
|
+
|
|
349
|
+
**When to use `--full` (rare):**
|
|
350
|
+
- After moving/renaming many packages or changing import styles across the codebase.
|
|
351
|
+
- If you manually deleted `import_cache.json`.
|
|
352
|
+
- When the dogfood report or `get_incremental_status` shows very low resolution health.
|
|
353
|
+
|
|
354
|
+
**Root Detection Rules (to avoid confusion)**
|
|
355
|
+
Wikifier finds the project root using this priority (agents should understand this):
|
|
356
|
+
1. `WIKIFIER_PROJECT_ROOT` environment variable (highest priority, works for both shell + MCP).
|
|
357
|
+
2. Explicit `--project-root` flag (CLI) or `project_root` parameter (MCP tools).
|
|
358
|
+
3. Walk upward from CWD looking for `monitored_paths.txt` or `.wikifier/` directory.
|
|
359
|
+
4. `.mcp.json` in the current workspace (common in Grok Build / Cursor sessions).
|
|
360
|
+
|
|
361
|
+
When operating on an external project after `pip install wikifier`, the most reliable pattern is:
|
|
362
|
+
```bash
|
|
363
|
+
WIKIFIER_PROJECT_ROOT=/absolute/path/to/your/repo wikifier check-changes
|
|
364
|
+
WIKIFIER_PROJECT_ROOT=/absolute/path/to/your/repo wikifier-mcp
|
|
365
|
+
```
|
|
366
|
+
Or pass `project_root` on every MCP tool call.
|
|
367
|
+
|
|
368
|
+
This section was significantly strengthened during M2-Rem-06 based on dogfood feedback.
|
|
369
|
+
|
|
370
|
+
---
|
|
371
|
+
|
|
372
|
+
## What Wikifier Gives You
|
|
373
|
+
|
|
374
|
+
- **Per-file Documentation Health Matrix** — 🟢 Green / 🟡 Yellow / 🔴 Red status with reasons
|
|
375
|
+
- **Semantic Change Logging** — `record-change "file" "I did X because Y"` (the "why", not just the "what")
|
|
376
|
+
- **Background Heartbeat Monitor** — Passive `monitor &` loop keeps everything fresh while you sleep
|
|
377
|
+
- **Automated Journal + Categorized Issues** — Dated entries + `Logged_issues/{simple,moderate,high,critical}/...`
|
|
378
|
+
- **Human Investigation Dashboard (secondary layer)** — `index.html` (copied by init into your project root). Clean human view: prominent code structure chart (Mermaid dependency tree) as hero, "Files & descriptions" list with short summaries ("what the code is about"), simple folder browser, and easy copy buttons for the tree text + full snapshot (tree + files + descriptions) ready for pasting to LLMs or sharing. Auto-refreshes when monitor runs. `diagnostics.html` for technical details / refactors. The .md files + tools remain primary for agents.
|
|
379
|
+
- **First-Class MCP Server** — Run `wikifier-mcp` to expose Wikifier as a proper MCP server with rich tools (`get_dependents`, `get_project_status`, `suggest_next_actions`, etc.), resources, and prompts. Works great with Claude Desktop, Cline, Cursor, and other MCP clients.
|
|
380
|
+
- **Legacy Skills Interface** — `skills/run.md` still available for simpler shell-based agent setups.
|
|
381
|
+
- **True Zero Dependencies** — Pure Bash + PowerShell. Works on any machine, no Docker, no Node, no Python packages.
|
|
382
|
+
|
|
383
|
+
**Primary: agent-to-agent wiki (token-saving).** Agents/LLMs use the text files (file_health.md, library.md, *.wiki.md) + MCP/CLI/tools directly for lookup + autonomous updates (see skills/run.md).
|
|
384
|
+
|
|
385
|
+
**Secondary: human investigation layer.** Run `wikifier init` on any project (new or existing). Only `index.html` (the clean human wiki viewer) is copied into the project root. Open it (via local server recommended) to see the project's own code structure chart (Mermaid), "Files & descriptions" with short summaries from the agent wiki, folder browser, and copy buttons for tree text + snapshot. `diagnostics.html` (Wikifier's maintainer/refactor hub with its own architecture + source tree) is *not* copied — it would point at the wrong folder and be irrelevant/stale for the host project. If you have an old copy, you can delete it. Primary agent-to-agent use is always the text files + MCP/CLI.
|
|
386
|
+
|
|
387
|
+
This enables humans to investigate projects (existing or new) while agents/MCP keep the wiki current. The .md files remain the SSOT for agents.
|
|
388
|
+
|
|
389
|
+
## Core Commands
|
|
390
|
+
|
|
391
|
+
| Command | Purpose |
|
|
392
|
+
|---------------------------|----------------------------------------------|
|
|
393
|
+
| `wikifier check-changes` | Incremental mtime scan + health update |
|
|
394
|
+
| `wikifier record-change <file> "reason"` | Log *why* you made an edit (required) |
|
|
395
|
+
| `wikifier mark-green <file>` | Mark wiki summary as accurate after editing |
|
|
396
|
+
| `wikifier monitor &` | Background heartbeat (30s polling) |
|
|
397
|
+
| `wikifier update-maps` | Rebuild `library.md` + Mermaid dependency graph |
|
|
398
|
+
| `wikifier health` | Show current Documentation Health Matrix |
|
|
399
|
+
|
|
400
|
+
Full reference → [`skills/run.md`](skills/run.md)
|
|
401
|
+
|
|
402
|
+
## Quick Links
|
|
403
|
+
|
|
404
|
+
- [docs/spec.md](docs/spec.md) — Immutable user requirements
|
|
405
|
+
- [docs/Basis-v0.3.md](docs/Basis-v0.3.md) — Implementation reference & data formats
|
|
406
|
+
- [docs/TRADEOFFS.md](docs/TRADEOFFS.md) — Why we made the design choices we did
|
|
407
|
+
- [index.html](index.html) — Open this in a browser for the live dashboard
|
|
408
|
+
|
|
409
|
+
## Differentiation
|
|
410
|
+
|
|
411
|
+
Unlike heavy "LLM Wiki" approaches (e.g. Karpathy-style personal knowledge bases), Wikifier is the **ultra-light, shell-native** implementation:
|
|
412
|
+
|
|
413
|
+
- Per-file health matrix with clear Red/Yellow/Green workflow
|
|
414
|
+
- Semantic `record-change` intent logging for future self-review
|
|
415
|
+
- True background monitor + zero external dependencies
|
|
416
|
+
- Native cross-platform (Linux/macOS/Windows via PowerShell)
|
|
417
|
+
- Designed from day one to be driven by LLMs via MCP/tools
|
|
418
|
+
|
|
419
|
+
**License**: MIT — fork freely and use in any project.
|
|
420
|
+
|
|
421
|
+
---
|
|
422
|
+
|
|
423
|
+
*Built for agents, by agents, with just `bash` and stubbornness.*
|