# 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