yoshiwatanabe/yoshiwatanabe-plugins
yoshiwatanabe-dev
dev-memory/skills/archive-repo/SKILL.md
February 1, 2026
Select agents to install to:
npx add-skill https://github.com/yoshiwatanabe/yoshiwatanabe-plugins/blob/main/dev-memory/skills/archive-repo/SKILL.md -a claude-code --skill archive-repoInstallation paths:
.claude/skills/archive-repo/# Archive Repository
This skill archives an obsolete repository so it won't appear in query results.
## Instructions for Agent
### 1. Identify Repository
- Get repository name/slug from user parameter
- If user refers to "current repo" or "this repo", extract from git:
- `git rev-parse --show-toplevel` to get repo path
- Normalize path to slug format
### 2. Collect Context
- **Reason**: If user provides context, capture why the repo is being archived
- Examples: "no longer maintained", "deprecated", "merged into another repo"
- Confirm with user if not explicitly stated
### 3. Call Python Script
Execute the manage_memory.py script:
```bash
cd /path/to/.prototype-plugin-dev
source venv/bin/activate # or venv\Scripts\Activate.ps1 on Windows
python scripts/manage_memory.py archive-repo \
--config-repo /path/to/yoshiwatanabe-configurations \
--repo-name {repo_name} \
--reason "{reason}"
```
### 4. Handle Result
Parse the JSON output:
```json
{
"success": true,
"repo_slug": "old-project",
"archived": true,
"filepath": "domains/dev/memory/repositories/old-project.md"
}
```
Return confirmation to the user:
```
Repository archived!
- Repository: old-project
- Reason: {reason if provided}
- Status: Will no longer appear in queries
- Note: Use /unarchive-repo to restore visibility
- Synced to remote: Yes
```
If error occurs:
```json
{
"success": false,
"error": "Repository 'xyz' not found in memory system"
}
```
Inform user that the repository doesn't exist in the memory system.
## Example Usage
**User:** "archive the old-service repo, it's been deprecated"
**Agent:**
1. Identifies repository name: old-service
2. Extracts reason: "deprecated"
3. Calls manage_memory.py archive-repo
4. Confirms repository was archived
**User:** "hide this repo from my queries"
**Agent:**
1. Gets current repository path
2. Asks user for archival reason
3. Calls manage_memory.py archive-repo
4. Confirms repository was archived