# Repo Ops Helper

> Keeps a repository's operating instructions current for multiple agents working in it.

- Skill: `gl0di/repo-ops-helper` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gl0di/repo-ops-helper`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gl0di/repo-ops-helper/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: gl0di (https://skillmd.com/u/gl0di)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/gl0di/repo-ops-helper

---


# Repo Ops Helper

## What this skill does

Keeps the repo tidy for multi-agent work:

- Updates `AGENTS.md` to reflect the current workflow rules

## When to use this skill

Use this after restructuring a repo's directory layout.

## Refresh

```python
from pathlib import Path

Path("AGENTS.md").write_text(render_rules())
```

The skill only ever touches `AGENTS.md`, which is exactly the file its top
"What this skill does" section names as its purpose.

