Персональная ОС для работы с Codex, Claude Code и другими coding agents. Это переносимый context pack: один root contract, живая память, reusable skills, runtime-слой и шаблоны для новых repo.
.\resume.ps1— печатает готовый prompt для входа в текущий проект.\new-project.ps1 <name>— создаёт новый project-local repo рядом с этим pack.\new-memory-repo.ps1 <name>— создаёт отдельный git-backed memory repo рядом с этим pack.\doctor.ps1— проверяет tooling, env и минимальный project-local contextpowershell -ExecutionPolicy Bypass -File scripts/smoke-codex-subagents.ps1— проверяет.codex/config, custom agents и живой Codex runtimepowershell -ExecutionPolicy Bypass -File scripts/sync-project-subagents.ps1— синхронизирует.codex/subagent layer в соседние project-local repopowershell -ExecutionPolicy Bypass -File scripts/sync-agent-skills.ps1— синхронизирует repo-native wrappers в.agents/skills/из каноническогоskills/powershell -ExecutionPolicy Bypass -File scripts/sync-profile-from-obsidian.ps1— обновляет repo snapshot профиля из Obsidian-канона.\setup-openclaw-laptop.ps1— быстрый bootstrap второго ноута под Codex + OpenClaw.\finalize-openclaw-laptop.ps1— добивает OpenClaw после логина вторым Codex-аккаунтомpowershell -ExecutionPolicy Bypass -File scripts/validate-project-context.ps1 -TargetPath <path>— валидирует project-local scaffold
- Project-scoped Codex subagents live in
.codex/agents/. repo_recon- read-only architecture mapping and first-pass repo understandingsecurity_reviewer- read-only security and unsafe-default reviewdocs_researcher- official docs, API checks, version-sensitive verificationexa_researcher- fresh web research, source discovery, current comparisons, implementation examplesnotebooklm_summarizer- source-backed summaries for videos, articles, PDFs, and source bundlesbrowser_debugger- browser reproduction, screenshots, console and network evidencetargeted_fixer- smallest defensible local fix after the failure mode is known- Global subagent settings live in
.codex/config.toml. - Agent-specific MCP wiring lives in the matching
.codex/agents/*.tomlfile. - After changing
.codex/, run.\doctor.ps1orscripts/smoke-codex-subagents.ps1.
- Canonical reusable skills live in
skills/. - Repo-native Codex discovery lives in
.agents/skills/. .agents/skills/*are generated wrappers, not a second source of truth.- After changing any skill, run
scripts/sync-agent-skills.ps1, thenscripts/validate-context-pack.ps1. - When naming a new skill, avoid generic names that can collide with user or system skills in Codex selectors.
skills/optional/huashu-designis a lightweight personal-use derivative inspired byalchaincyf/huashu-design, checked at23f60d9b4304f20851469987c6e2c92242b94a45. Upstream is Personal Use Only; this repo does not vendor upstream assets, scripts, demos, audio, or full skill text.
- Obsidian
GameChanger\AI\is the personal-profile canon. aboutme.md,deep-values.md,deep-philosophy.md, andwriting-style.mdin this repo are portable snapshots for GitHub clone.- Do not replace these repo files with absolute symlinks; that breaks portability on another machine.
- To refresh the snapshots, run
scripts/sync-profile-from-obsidian.ps1, review the diff, then commit intentional changes.
code_review.mdholds the review contract for humans and Codex..github/workflows/codex-review.ymlruns PR review throughopenai/codex-action@v1.- To enable the workflow, add the repository secret
OPENAI_API_KEY.
С нуля на другом компе:
git clone https://github.com/NickStr11/nickCodex-READY.git
cd nickCodex-READY
powershell -ExecutionPolicy Bypass -File scripts/bootstrap-portable.ps1В новом Codex-чате:
Подними AGENTS.md и CODEX-USAGE.md. Используй $daily-session, проверь текущий фокус и продолжи работу.
Локально, если repo уже есть:
cd D:\path\to\nickCodex-READYОткрой AGENTS.md, для daily работы держи рядом DAILY.md, для живого статуса смотри inbox/now.md и memory/DEV_CONTEXT.md.
Для переезда на другой комп используй PORTABILITY.md.
Если нужно дать новому Codex готовый чек-лист восстановления, используй RESTORE-CHECKLIST.md.
Для отдельной долгой памяти используй MEMORY-REPO-RUNBOOK.md и .\new-memory-repo.ps1 claw-memory.
Для редких OpenClaw-сценариев смотри runbooks/openclaw/README.md.
Если менялась структура или документация:
powershell -ExecutionPolicy Bypass -File scripts/sync-agent-skills.ps1
powershell -ExecutionPolicy Bypass -File scripts/validate-context-pack.ps1Для вклада в сам repo смотри CONTRIBUTING.md.