AGENT0S
HomeLibraryAgentic
FeedbackLearn AI
LIVE
Agent0s · AI Intelligence Library
Share FeedbackUpdated daily · 7am PST
Library/skill
skillintermediateChatGPT/Codex

Awesome Codex Skills: A Curated Collection for Automation

This is a library of pre-built commands that enhance your team's AI coding assistant (Codex CLI). It adds new abilities like automatically drafting project plans, fixing broken code deployments, and creating spreadsheet formulas, saving developers time on common tasks.

AI SETUP PROMPT

Paste into Codex CLI — it will scan your project and set everything up

# Install & Configure: Awesome Codex Skills: A Curated Collection for Automation

## What This Is
This is a library of pre-built commands that enhance your team's AI coding assistant (Codex CLI). It adds new abilities like automatically drafting project plans, fixing broken code deployments, and creating spreadsheet formulas, saving developers time on common tasks.

Source: https://github.com/ComposioHQ/awesome-codex-skills

## Before You Start

Scan my workspace and analyze:
- The project language, framework, and directory structure
- Existing agent configuration (check for .claude/, .codex/, CLAUDE.md, settings.json, commands/, skills/ directories)
- Whether this repository or a similar tool is already cloned or installed

Then ask me before proceeding:
1. Where should this skill be installed — project-level (.claude/skills/) or globally?
2. Any customizations needed (trigger conditions, naming, etc.)?

## Fetch the Source

Clone or inspect the repository to understand what needs to be installed:
```bash
gh repo clone ComposioHQ/awesome-codex-skills
```
Review the README, directory structure, and any install instructions before proceeding.

## What to Implement

This is an **Agent Skill** — an auto-loaded capability defined in a SKILL.md file.

- Read the source repository/file to find the skill definition (SKILL.md or equivalent)
- Place it in the correct skills directory for my agent setup (`.claude/skills/`, or equivalent)
- Ensure the SKILL.md frontmatter is valid and the skill is discoverable
- If the skill requires any dependencies, install them using the project's package manager

## Additional Context

- Clone the repository to get access to the installer script and skill manifests: git clone https://github.com/ComposioHQ/awesome-codex-skills.git
- Scan the subdirectories within the newly cloned 'awesome-codex-skills/awesome-codex-skills/' path to identify all available skill names (e.g., 'gh-fix-ci', 'meeting-notes-and-actions').
- Present the list of available skills to the user for selection. For each skill the user chooses, execute the installer script to place it in the correct Codex directory: python awesome-codex-skills/skill-installer/scripts/install-skill-from-github.py --repo ComposioHQ/awesome-codex-skills --path <selected_skill_directory_name>

## Reference Implementation

```
```bash
git clone https://github.com/ComposioHQ/awesome-codex-skills.git
cd awesome-codex-skills/awesome-codex-skills
# Install one or more skills into $CODEX_HOME/skills (defaults to ~/.codex/skills)
python skill-installer/scripts/install-skill-from-github.py --repo ComposioHQ/awesome-codex-skills --path meeting-notes-and-actions
```
```

## Guidelines

- Adapt everything to my existing project — do not assume a specific stack or directory layout
- Review any fetched code for safety before installing or executing it
- After setup, run a quick verification and show me a summary of exactly what was installed, where, and how to use it
2,980 charactersCompatible with Claude Code & Codex CLI
MANUAL SETUP STEPS
  1. 01Clone the repository to get access to the installer script and skill manifests: git clone https://github.com/ComposioHQ/awesome-codex-skills.git
  2. 02Scan the subdirectories within the newly cloned 'awesome-codex-skills/awesome-codex-skills/' path to identify all available skill names (e.g., 'gh-fix-ci', 'meeting-notes-and-actions').
  3. 03Present the list of available skills to the user for selection. For each skill the user chooses, execute the installer script to place it in the correct Codex directory: python awesome-codex-skills/skill-installer/scripts/install-skill-from-github.py --repo ComposioHQ/awesome-codex-skills --path <selected_skill_directory_name>

CODE INTELLIGENCE

bash
```bash
git clone https://github.com/ComposioHQ/awesome-codex-skills.git
cd awesome-codex-skills/awesome-codex-skills
# Install one or more skills into $CODEX_HOME/skills (defaults to ~/.codex/skills)
python skill-installer/scripts/install-skill-from-github.py --repo ComposioHQ/awesome-codex-skills --path meeting-notes-and-actions
```

FIELD OPERATIONS

Automated DevOps Assistant

Combine the `gh-fix-ci` and `gh-address-comments` skills into a single workflow. Create a custom script that, when run, automatically checks for failing CI on the current branch, attempts to generate a fix, and then scans for unresolved PR comments and drafts responses.

Meeting Productivity Bot

Use the `meeting-notes-and-actions` skill as a foundation. Build a service that watches a calendar, transcribes meeting audio using a transcription API, and then pipes the text into the Codex skill to automatically generate and distribute meeting notes and action items via Slack.

STRATEGIC APPLICATIONS

  • →Accelerate developer onboarding by providing new hires with a pre-configured Codex CLI that includes skills for common repository tasks, reducing ramp-up time and questions for senior staff.
  • →Improve code quality and review velocity by integrating the `gh-fix-ci` and `gh-address-comments` skills into a pre-review workflow, allowing automation to handle simple fixes and freeing up senior developers for complex architectural review.

TAGS

#codex#skill#automation#github#cli#devops#productivity
Source: GITHUB · Quality score: 7/10
VIEW SOURCE