srecodex

内容来源:README.md(说明文档) · 原始地址 · 查看安装指南

原始内容

SREcodex

SRE skills for OpenAI Codex.

Quick Start

git clone git@github.com:brendanbecker/SREcodex.git
cd SREcodex
./scripts/uninstall-bridge.sh

The script will:

  1. Remove any old bridge symlinks from ~/.codex/
  2. Install skills to ~/.codex/skills/
  3. Prompt you to clean up any MCP server config

Restart Codex after running the script.

Skills Included

Skill Description
document-parser Parse large documents exceeding context limits
skill-builder Create new skills
time-awareness Current date/time information
uv-python UV package manager workflow for Python

Manual Installation

If you prefer not to run the script, copy skills manually:

cp -r skills/* ~/.codex/skills/

Adding Skills

  1. Create a new directory under skills/
  2. Add a SKILL.md file with YAML frontmatter:
---
name: "My Skill"
tags: ["keyword1", "keyword2"]
intent: "Use this when..."
version: "1.0.0"
---

# My Skill

Instructions here...
  1. Run the install script or copy manually

License

MIT