English · العربية · Español · Français · 日本語 · 한국어 · Tiếng Việt · 中文 (简体) · 中文(繁體) · Deutsch · Русский
Documentation-first repository scaffold for maintaining one canonical English README and synchronized multilingual documentation, guided by three operating principles: sear creation tools, self-healing tools, and chain of prompt tools.
| Type | Destination |
|---|---|
| Project summary | Overview |
| Core capabilities | Features |
| Pipeline design | Architecture |
| Philosophy baseline | Philosophy at a glance |
| Contributor workflow | Development Notes |
| Future direction | Roadmap |
| Support this project | Support |
| Item | Current state |
|---|---|
| Repository phase | Documentation bootstrap scaffold |
| Runtime code | Not detected in current snapshot |
| Tests/CI pipelines | Not detected in current snapshot |
| Localized docs | 10 locale files under i18n/ |
| Pipeline artifacts | Timestamped runs under .auto-readme-work/ |
| License file | Not present as standalone file (README badge shows TBD) |
| Philosophy baseline | Sear creation + self-healing + chain of prompt tools |
AgInTi currently functions as a README lifecycle and localization pipeline, not as a runtime application. The root README.md is the canonical source, and localized variants in i18n/ are synchronized from that canonical structure.
The project philosophy is operational rather than decorative. Each README update is expected to satisfy all three principles:
- Sear creation tools: intentionally sharp creation workflows that generate high-signal documentation from constrained repository evidence.
- Self-healing tools: repair-oriented mechanisms that remove drift, duplication, and structural inconsistency.
- Chain of prompt tools: staged, traceable prompt flows that preserve context-to-output lineage across pipeline runs.
This repository preserves meaningful historical content through incremental edits while retaining critical links, commands, and support metadata.
| Principle | Intent | Operational outcome |
|---|---|---|
| Sear creation tools | Produce high-signal documentation from constrained evidence. | Sections stay practical, specific, and repository-grounded. |
| Self-healing tools | Repair drift, duplication, and stale structure. | Canonical and localized READMEs stay aligned and clean. |
| Chain of prompt tools | Keep generation stages explicit and traceable. | Pipeline artifacts preserve reproducible context and handoffs. |
- README-first documentation strategy with a canonical root document.
- Multilingual synchronization across 10 i18n README variants.
- Pipeline-driven authoring via
.auto-readme-work/<run-id>/artifacts. - Single-banner and single-support-panel invariants to prevent duplicate visual blocks.
- Incremental-update discipline that preserves substantive technical history.
| Core principle | Current manifestation |
|---|---|
| Sear creation tools | Precise README drafting from repo-grounded evidence and stable section scaffolds. |
| Self-healing tools | Deduplication checks for repeated banner/support blocks, stale references, and structure drift. |
| Chain of prompt tools | Run-specific artifact chain (pipeline-context, nav templates, translation plan) for reproducible output. |
AgInTi/
├── README.md
├── i18n/
│ ├── README.ar.md
│ ├── README.de.md
│ ├── README.es.md
│ ├── README.fr.md
│ ├── README.ja.md
│ ├── README.ko.md
│ ├── README.ru.md
│ ├── README.vi.md
│ ├── README.zh-Hans.md
│ └── README.zh-Hant.md
└── .auto-readme-work/
├── 20260228_184104/
├── 20260301_064213/
├── 20260301_064740/
├── 20260301_065835/
├── 20260301_070633/
├── 20260302_120620/
├── 20260302_124338/
├── 20260302_140150/
└── 20260302_140358/
At this stage, architecture means documentation pipeline architecture, not runtime service architecture.
flowchart LR
A[Capture run context\n.auto-readme-work/<run-id>/pipeline-context.md] --> B[Analyze repository state\nrepo-structure-analysis.md]
B --> C[Draft canonical README\nREADME.md]
C --> D[Align i18n READMEs\ni18n/README.*.md]
D --> E[Validate quality gates\nlinks, duplicates, structure parity]
- Sear creation tools: applied during content construction to keep sections concrete, complete, and repository-accurate.
- Self-healing tools: applied during validation to remove duplicate blocks, repair stale run references, and restore structural parity.
- Chain of prompt tools: applied across artifacts so each generation stage remains explicit and auditable.
| Stage | Sear creation tools | Self-healing tools | Chain of prompt tools |
|---|---|---|---|
| Context capture | Define sharp generation constraints. | Flag missing or invalid inputs early. | Preserve source prompt and run metadata. |
| Canonical drafting | Build complete README sections from repository evidence. | Prevent regressions and accidental content loss. | Keep stage outputs linked to prior artifacts. |
| i18n alignment | Maintain structure and technical parity across locales. | Correct drift between root and i18n files. | Carry canonical intent into each localized variant. |
| Final verification | Enforce readability and detail preservation. | Remove duplicate banner/support blocks and stale references. | Leave an auditable artifact trail for the run. |
| File | Purpose |
|---|---|
.auto-readme-work/20260302_140358/pipeline-context.md |
Source constraints and goals for this generation pass. |
.auto-readme-work/20260302_140358/repo-structure-analysis.md |
Repository scan summary and inferred technical state. |
.auto-readme-work/20260302_140358/language-nav-root.md |
Canonical language options line for root README.md. |
.auto-readme-work/20260302_140358/language-nav-i18n.md |
Canonical language options line for i18n README files. |
.auto-readme-work/20260302_140358/translation-plan.txt |
Locale mapping and i18n target file plan. |
.auto-readme-work/<older-run-id>/... |
Historical context from prior pipeline runs. |
git- POSIX shell (examples use
bash) - Markdown-capable editor
- No runnable service or application manifest is present in this repository snapshot.
- Installation, build, and start guidance is therefore documentation-workflow oriented.
No binary package or runtime build step is defined yet.
git clone [email protected]:lachlanchen/AgInTi.git
cd AgInTiCurrent usage centers on documentation maintenance and multilingual synchronization.
ls -la
ls -la .auto-readme-work/20260302_140358
ls -la i18n- Read
.auto-readme-work/20260302_140358/pipeline-context.md. - Verify language selector templates in
language-nav-root.mdandlanguage-nav-i18n.md. - Update
README.mdincrementally as the source of truth. - Align
i18n/README.*.mdfiles to the same structure and key technical details. - Confirm there is exactly one banner and exactly one support panel.
No runtime configuration exists yet. Documentation behavior is driven by repository artifacts.
pipeline-context.md: run goals and constraints.repo-structure-analysis.md: snapshot evidence and gaps.language-nav-root.mdandlanguage-nav-i18n.md: navigation consistency.translation-plan.txt: locale targets and mapping.
cat .auto-readme-work/20260302_140358/language-nav-root.md
cat .auto-readme-work/20260302_140358/language-nav-i18n.mdcat .auto-readme-work/20260302_140358/translation-plan.txtfind . -maxdepth 2 \
\( -name package.json -o -name pyproject.toml -o -name go.mod -o -name Cargo.toml -o -name pom.xml \)- Preserve substantive sections and links from canonical README history.
- Prefer incremental edits over destructive rewrites.
- Keep one banner and one support block only.
- Keep root and i18n README structures synchronized.
- Clearly state assumptions whenever runtime or infrastructure details are unknown.
- Apply the philosophy triad as active guardrails:
- Sear creation tools for high-signal drafting.
- Self-healing tools for consistency repair.
- Chain of prompt tools for reproducible handoff between pipeline stages.
That is expected for the current bootstrap phase.
Use the canonical templates in:
.auto-readme-work/20260302_140358/language-nav-root.md.auto-readme-work/20260302_140358/language-nav-i18n.md
git fetch origin
git pull --ff-onlyAdd build and run instructions only after introducing concrete manifests (for example: package.json, pyproject.toml, go.mod, Cargo.toml) and confirming their paths in this repository.
- Strengthen sear creation tools with standardized README drafting templates, section quality gates, and clearer evidence-to-output checks.
- Expand self-healing tools with automated checks for duplicate blocks, locale drift, broken internal anchors, and stale run references.
- Formalize chain of prompt tools across run stages for reproducible context, generation, translation, and verification traces.
- Add a single-command documentation maintenance flow once repository scripts are introduced.
- Add CI checks for markdown quality, link integrity, and i18n structure parity.
- Introduce concrete runtime components when source manifests and entrypoints are added.
- Publish a stable licensing decision and add a standalone license file.
| Focus area | Near-term target |
|---|---|
| Sear creation tools | Improve drafting templates and evidence-backed section prompts. |
| Self-healing tools | Automate duplicate detection, stale anchor checks, and locale drift repair. |
| Chain of prompt tools | Standardize run-stage artifact contracts for reproducible multilingual outputs. |
Contributions are welcome.
- Open an issue describing the intended change.
- Create a focused branch.
- Keep documentation edits incremental and repository-accurate.
- Preserve important links, commands, and substantive historical context.
- Open a pull request with concise verification notes.
git checkout -b docs/your-update
# edit README.md and/or i18n/README.*.md
git add README.md i18n/README.*.md
git commit -m "docs: refine README content"
git push -u origin docs/your-updateThis repository includes these root submodules:
Nested structure for LRE:
AgInTi/LifeReverseEngineering/learn-> LazyLearnAgInTi/LifeReverseEngineering/earn-> LazyEarnAgInTi/LifeReverseEngineering/IDEAS-> IDEAS
AgInTi includes a LAB-compatible prompt-tool bundle under:
AgInTi/lab_prompt_tools/
Core LRE and AutoAppDev scripts:
lab_prompt_tools/lre/run_lre_deep_research.shlab_prompt_tools/lre/run_lre_autoappdev.shlab_prompt_tools/lre/prompt_lre_profile_research.shlab_prompt_tools/lre/prompt_lre_book_finder.shlab_prompt_tools/lre/prompt_lre_investment_finder.shlab_prompt_tools/lre/prompt_lre_ideas_finder.shlab_prompt_tools/lre/prompt_lre_self_evolve.shlab_prompt_tools/lre/prompt_lre_repo_autoreadme.shlab_prompt_tools/lre/prompt_lre_repo_autowebsite.sh
Entry point:
lab_prompt_tools/lre/run_lre_deep_research.sh
Pipeline stages:
- Profile research stage runs
prompt_lre_profile_research.sh. - Books stage runs
prompt_lre_book_finder.shusing profile output. - Investments stage runs
prompt_lre_investment_finder.shusing profile output. - Ideas stage runs
prompt_lre_ideas_finder.shusing profile output. - Single-copy report is rebuilt into one markdown file, not appended.
- Outputs are synced into LRE sub-repos as latest snapshots and self-heal logs.
- AutoAppDev stage runs for README and website updates across all related repos.
- Email stage drafts/sends final summary via runtime mail tools.
Key data flow:
- Base output root:
~/.openclaw/workspace/LRE/ - Per-stage JSON output:
.../codex/latest-result.json - Single-copy report:
LifeReverseEngineering/notes/lre_single_copy.md - Learn notes:
LifeReverseEngineering/learn/notes/lre_books_latest.md - Earn notes:
LifeReverseEngineering/earn/notes/lre_investments_latest.md - IDEAS notes:
LifeReverseEngineering/IDEAS/notes/lre_research_ideas_latest.md - Self-heal snapshots:
LifeReverseEngineering/**/tools/lre/*_self_heal_latest.{json,log}
Failure handling:
- Each major research step uses timed execution and fallback mode.
- Fallback automatically retries with websearch disabled to prevent full pipeline abort.
Quick run:
cd AgInTi
lab_prompt_tools/lre/run_lre_deep_research.sh --model gpt-5.3-codex --reasoning highEntry point:
lab_prompt_tools/lre/run_lre_autoappdev.sh
Targets updated in one run:
AgInTiLifeReverseEngineeringLifeReverseEngineering/learn(LazyLearn)LifeReverseEngineering/earn(LazyEarn)LifeReverseEngineering/IDEAS(IDEAS)
For each target repo, the pipeline executes:
prompt_lre_repo_autoreadme.shto update README artifacts.prompt_lre_repo_autowebsite.shto update website artifacts.- Run logs are written under
~/.openclaw/workspace/LRE/autoappdev/logs/<run-id>/.
The course/LinkedIn automation stack is in:
lab_prompt_tools/career/
Primary scripts:
lab_prompt_tools/career/start_dec_login_session.shlab_prompt_tools/career/selenium_login_bootstrap.pylab_prompt_tools/career/prompt_career_tool_builder.shlab_prompt_tools/career/prompt_career_tool_autodev.sh
Runtime dependencies reused from shared tools:
lab_prompt_tools/runtime/codex-json-runner.pylab_prompt_tools/runtime/codex-noninteractive.shlab_prompt_tools/websearch/prompt_web_search_immersive.sh
Course agent pipeline:
- Manual bootstrap opens browser session and handles login checkpoints.
- Builder stage generates a structured tool plan JSON for the objective.
- Autodev stage consumes the plan and applies/fixes scripts under a target root.
- Prompt-driven tool generation is iterative, so the same loop can refine broken actions.
- Output artifacts are stored in run directories under
~/.openclaw/workspace/AgInTi/.
flowchart TD
A[Human run start_dec_login_session.sh] --> B[selenium_login_bootstrap.py]
B --> C{Login state}
C -- logged in --> D[Open DEC course]
C -- needs auth --> E[Username/password + OTP checkpoint]
E --> D
D --> F[Course auto-run loop]
F --> G[Detect state and question]
G --> H[Pick answer and click confirm/next]
H --> I{Progress?}
I -- yes --> F
I -- no --> J[Stall handling: retry/refresh/no-action]
J --> F
F --> K{Completion marker}
K -- yes --> L[completed]
K -- no --> M[incomplete + diagnostics]
L --> N[sessions/<run-id>/ screenshots + bootstrap.log]
M --> N
flowchart LR
O[Human objective] --> P[prompt_career_tool_builder.sh]
P --> Q[Structured tool plan JSON]
Q --> R[prompt_career_tool_autodev.sh]
R --> S[Apply/fix scripts and prompts]
S --> T[Re-run bootstrap]
T --> U[New logs/screenshots]
U --> V[Shadow-self style diagnosis and next repair]
V --> R
Default target root for generated career tooling:
AgInTi/AutoAppDev/CareerOps
| Donate | PayPal | Stripe |
|---|---|---|
TBD. A standalone license file is planned but is not yet present in the current snapshot.