akbun-agent-ops
v1.0.0Agent operations skills — set up a project's memory layout once, rebuild working context at session start, and turn each session's lessons into approved edits to the memory structure the codebase already has
By akbunLicense: MIT2 GitHub starsUpdated 4 days ago
Directory evidence
- Runtimes
- Codex and Claude Code
- Parsed components
- 3 skill or MCP entries
- Source updated
- Sep 19, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install akbun-agent-ops for Codex and Claude Code
codex plugin marketplace add choisungwook/akbun-aitools
codex plugin marketplace upgrade akbun-aitools
codex plugin add akbun-agent-ops@akbun-aitoolsPaste and run these commands in a terminal with Codex. They add and refresh the akbun-aitools catalog, then install this plugin.
Compatibility: the page URL and API slug “akbun-agent-ops” remain stable.
- Codex:
akbun-agent-ops@agent-plugin-marketplace→akbun-agent-ops@akbun-aitools
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/choisungwook/akbun-aitoolsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/akbun-agent-ops/.
Plugin files
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/akbun-memory-setup/SKILL.md├── skills/akbun-recall/SKILL.md└── skills/akbun-reflect/SKILL.md
Included Skills3
프로젝트에 agent용 기억 디렉터리와 AGENTS.md 읽기 순서, CLAUDE.md 포인터를 최초 1회 만든다. 프로젝트를 훑어 반복해서 필요한 맥락을 종류별로 나누고, 디렉터리마다 "언제 읽는가"를 적어 agent가 매번 전부 읽지 않게 한다. "agent 기억 구조 만들어줘", "AGENTS.md 세팅해줘", "메모리 디렉터리 설계" 요청에 사용한다. 사용자가 직접 호출할 때만 실행한다.
세션을 시작하거나 작업을 재개할 때 최근 작업 맥락을 복원해 짧은 현재 상태 브리프로 돌려준다. AGENTS.md가 가리키는 기억 디렉터리, git·PR 상태, 이전 세션 transcript를 읽어 캡슐·스레드 상태 태그·반복 문제·다음 행동 1개로 정리한다. "지난주 뭐 하고 있었지", "어디까지 했지", "X 작업 맥락 복원해줘", "catch me up" 요청에 사용한다. 사용자가 직접 호출할 때만 실행한다.
이 세션의 transcript를 리뷰어 3개(판단·도구·발산)가 병렬로 읽고, 다음 agent의 시간을 아낄 학습을 골라 코드베이스가 이미 가진 기억 구조(관련 skill의 SKILL.md, 프로젝트 wiki·결정 기록, AGENTS.md)의 맞는 자리에 수정 제안으로 라우팅한다. 사용자가 승인한 행만 적용한다. 디렉터리 구조나 AGENTS.md 읽기 순서는 새로 만들거나 바꾸지 않는다. "reflect", "이 세션에서 배운 걸 남겨", "self-improving" 요청에 사용한다. 사용자가 직접 호출할 때만 실행한다.
Plugin manifests2
{
"name": "akbun-agent-ops",
"version": "1.0.0",
"description": "Agent operations skills — set up a project's memory layout once, rebuild working context at session start, and turn each session's lessons into approved edits to the memory structure the codebase already has",
"author": {
"name": "akbun",
"url": "https://github.com/choisungwook"
},
"homepage": "https://github.com/choisungwook/akbun-aitools",
"repository": "https://github.com/choisungwook/akbun-aitools",
"license": "MIT",
"keywords": [
"agent",
"memory",
"recall",
"reflect",
"self-improving",
"AGENTS.md",
"skills"
],
"skills": "./skills/",
"interface": {
"displayName": "akbun Agent Ops",
"shortDescription": "Memory setup, session recall, and reflect-into-skills for agents",
"longDescription": "Three skills for running agents across sessions in akbun's style. akbun-memory-setup inspects a project once and lays out its memory directories plus an AGENTS.md read order that says what to read when. akbun-recall rebuilds the current working context at session start from that memory, git and PR state, and prior session transcripts, returning a short brief with status-tagged threads and one next move. akbun-reflect reviews the session transcript through three lenses and routes durable lessons into the memory structure the codebase already has (the relevant SKILL.md, the project wiki or decision records, or AGENTS.md), as edits the user approves row by row; it never creates or changes that structure.",
"developerName": "akbun",
"category": "Developer Tools",
"capabilities": [
"Interactive",
"Write"
],
"websiteURL": "https://github.com/choisungwook/akbun-aitools",
"privacyPolicyURL": "https://docs.github.com/site-policy/privacy-policies/github-general-privacy-statement",
"termsOfServiceURL": "https://docs.github.com/en/site-policy/github-terms/github-terms-of-service",
"defaultPrompt": [
"이 프로젝트에 agent 기억 디렉터리와 AGENTS.md 읽기 순서를 만들어줘 (akbun-memory-setup)",
"지난주에 내가 이 repo에서 뭘 하고 있었는지 복원해줘 (akbun-recall)",
"이 세션에서 배운 걸 skill 수정으로 정리해줘 (akbun-reflect)"
],
"brandColor": "#1D4ED8",
"screenshots": []
}
}{
"name": "akbun-agent-ops",
"description": "Agent operations skills — set up a project's memory layout once, rebuild working context at session start, and turn each session's lessons into approved edits to the memory structure the codebase already has",
"version": "1.0.0",
"author": {
"name": "akbun"
},
"repository": "https://github.com/choisungwook/akbun-aitools",
"license": "MIT",
"keywords": [
"agent",
"memory",
"recall",
"reflect",
"self-improving",
"AGENTS.md",
"skills"
]
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[akbun-agent-ops on Agent Plugins Marketplace](https://pluginsmp.com/plugins/akbun-agent-ops)