Archivonchik
Skill gogolumo/archivonchik-ai-ready-skill/skills/archivonchik
A Claude Skill that turns any codebase into an AI-ready project with project memory, session continuity, safe agent workflows, build/test discovery, context linting, review playbooks, and project health reports.
npx -y skills add gogolumo/archivonchik-ai-ready-skill --skill archivonchikAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use this skill when making any codebase AI-ready for Claude Code or other coding agents. Helps analyze repositories, create AGENTS.md and CLAUDE.md, build project memory, continue work across sessions, lint AI context, discover build/test commands, classify command safety, run Build Doctor, prepare PR summaries, and create safe workflows for features, bug fixes, refactors, reviews, tests, documentation, releases, and onboarding.
SKILL.md
3.3 KB, as published. Nobody here has run it
Archivonchik
Archivonchik turns a repository into an AI-ready project.
Use this skill when the user asks to:
- make a repository AI-ready;
- create or improve
AGENTS.md,CLAUDE.md, or Copilot instructions; - continue from previous work;
- preserve project memory across Claude Code sessions;
- run Build Doctor;
- lint project context;
- discover build/test/lint commands;
- classify a command as safe/caution/dangerous;
- review a change;
- generate tests;
- prepare a PR summary;
- onboard a developer or coding agent.
Core loop
Always work through:
Understand → Plan → Change → Verify → Remember
Required startup behavior
When Archivonchik is invoked inside a repository:
- Inspect the project structure before editing.
- Identify the stack and package manager if possible.
- Look for existing context files:
AGENTS.mdCLAUDE.md.github/copilot-instructions.mddocs/ai-context/*
- Read project memory if present:
CURRENT_STATE.mdNEXT_STEPS.mdDECISIONS.mdKNOWN_BUGS.mdDO_NOT_TOUCH.mdsession-memory/LAST_SESSION.md
- Choose the correct playbook.
- Avoid creating huge or duplicated instruction files.
Routing
Use these files as needed:
- Repository analysis:
reference/REPOSITORY_ANALYSIS.md,playbooks/repository-intake.md - Project memory:
reference/PROJECT_MEMORY.md,playbooks/update-project-memory.md - Session continuity:
reference/SESSION_CONTINUITY.md,playbooks/session-start.md,playbooks/session-end.md - Context compiler:
reference/CONTEXT_ENGINEERING.md,reference/AGENTS_MD.md,reference/CLAUDE_MD.md,reference/COPILOT_INSTRUCTIONS.md - Context linting:
reference/CONTEXT_LINTING.md,playbooks/context-lint.md - Command safety:
reference/COMMAND_SAFETY.md,playbooks/command-safety-review.md - Build/test discovery:
reference/BUILD_TEST_DISCOVERY.md - Build Doctor:
playbooks/build-doctor.md - Task workflows:
playbooks/feature-workflow.md,playbooks/bugfix-workflow.md,playbooks/refactor-workflow.md,playbooks/code-review-workflow.md - Stack-specific behavior:
profiles/* - Output templates:
templates/* - Other agent adapters:
adapters/* - Common usage recipes:
recipes/* - Showcase examples and sample reports:
showcase/*
Strong rules
- Do not store secrets, API keys, tokens, passwords, private keys, or personal data in project memory.
- Do not save entire chat transcripts.
- Do not create bloated context files.
- Do not run dangerous commands without explaining risk and asking for confirmation.
- Do not assume commands are correct; verify from project files.
- Do not edit high-risk files listed in
DO_NOT_TOUCH.mdwithout confirmation. - Prefer minimal, project-specific instructions over generic advice.
- After meaningful work, update project memory only with durable facts.