Sanitized Maintainer System Profile
This document records the real development setup observed during dry-run and doctor checks. Personal paths, usernames, emails, credentials, local libraries, and secrets are intentionally omitted or replaced with placeholders.
This page is not required for normal installation. It explains the environment that motivated the repository design, so readers can understand why the installer supports Linux, mounted Windows profiles, WSL-backed SageMath, and multiple agent homes. Treat it as an example deployment, not as a requirement for your own machine.
Roots
Substrate |
Placeholder |
Notes |
|---|---|---|
Linux home |
|
Primary development root used for local tests. |
Mounted Windows home |
|
Windows profile inspected from Linux/WSL-style mount. |
Execution Topology
The observed setup is best understood as shared research logic plus agent-local installation targets:
Codex, Claude, DeepSeek, Copilot, OpenCode, and Antigravity each load skills from their own supported local skill/config locations; OpenClaw is represented as a fake-root-only target for normal installer flows, with reviewed v2 real-system skill-file writes only through
openclaw-target-*.This repository holds the reusable skill bodies and dependency metadata.
The installer detects which agent homes exist, installs only those targets, and skips absent agents without requiring their tools.
Runtime-backed workflows use logical dependencies, not personal paths. For example, a skill asks for
python-runtime,tex-runtime, orsage-runtime;precheckdecides whether that capability is local, WSL-backed, missing, or degraded.
For a research task, the agent instruction layer chooses the workflow, while the software layer supplies concrete capabilities such as library lookup, document parsing, database access, figure compilation, and math verification.
Detected Agents
Substrate |
Codex |
Claude |
DeepSeek |
|---|---|---|---|
Linux |
present at |
present at |
present at |
Windows profile |
present at |
present at |
not detected |
If an agent home is absent, the installer skips that agent and does not require its dependencies.
Existing Skill Layouts
Agent |
Existing layout observed |
Installer behavior |
|---|---|---|
Codex |
Existing skills under |
Primary Codex target. Existing unmanaged files are skipped by default; canonical installs and migrations write here. |
Codex optional workspace |
Optional |
Compatibility or workspace-local target, not the default global target. |
Claude |
Existing skills under |
Canonical names are used for new installs; aliases are detected and skipped unless migrated. |
DeepSeek |
Existing skills under |
Existing unmanaged skills are skipped by default. |
The dry-run state had no managed ai-agents-skills instruction blocks yet.
Tool Detection Summary
Tool |
Linux observation |
Windows-profile observation |
Related skills |
|---|---|---|---|
|
system Python 3.10 with |
native Windows Python can be detected from |
|
|
|
TeX Live under |
|
|
not detected on Linux |
WSL-backed Sage is checked via |
|
Skill-To-Software Relationship
Skill area |
Main software or capability |
|---|---|
Research planning and synthesis |
agent instructions plus optional Python helper runtime |
Paper/library workflows |
Zotero credentials and local library access are external configuration, not repo content |
External paper retrieval |
|
Document parsing |
Local-only Docling runtime wrappers, Python, optional OCR tools, and optional local model artifacts |
Database lookup |
public HTTP APIs; API keys, when needed, are supplied externally |
Digest workflows |
Python runtime and user-managed topic/feed files outside the repo |
TikZ figures |
TeX engine; optional SageMath and graph helpers |
Math verification |
SageMath when available; Python/NetworkX for lightweight graph checks |
Multi-agent workflows |
agent orchestration instructions; no extra binary required by default |
Privacy Boundary
The repo should contain reusable skill logic, docs, and installers. It should not contain personal paths, auth files, credentials, session logs, downloaded papers/books, Zotero databases, Calibre libraries, or local runtime state.
Related pages: Dependencies, Windows, Linux, Audit And Migration.