A curated collection of enterprise AI skills, workflows, and best practices for building production-ready systems.
| Skill | Purpose |
|---|---|
release-notes-writer |
Draft release notes, changelog entries, GitHub release text, migration notes, and user-facing release announcements from git history and project changes. |
The skills in this repository use the open Agent Skills folder format:
skill-name/
SKILL.md
references/
scripts/
assets/
Each skill is a self-contained directory with a SKILL.md file containing YAML frontmatter (name and description)
plus Markdown instructions. This makes the same skill usable by skills-compatible clients such as OpenAI Codex,
Claude/Claude Code, OpenCode, VS Code agent integrations, and other clients that implement the Agent Skills format.
Install with the Skills CLI:
npx skills add orchestr7/ai-enterprise-skillsClone this repository, then copy the skill directory into the skill location used by your agent client.
git clone https://github.com/orchestr7/ai-enterprise-skills.git
cd ai-enterprise-skillsFor OpenAI Codex:
mkdir -p "${CODEX_HOME:-$HOME/.codex}/skills"
cp -R release-notes-writer "${CODEX_HOME:-$HOME/.codex}/skills/"For project-scoped Agent Skills clients that scan .agents/skills/, including VS Code-style integrations:
mkdir -p .agents/skills
cp -R release-notes-writer .agents/skills/For Claude Code personal use across all projects:
mkdir -p "$HOME/.claude/skills"
cp -R release-notes-writer "$HOME/.claude/skills/"For Claude Code project-scoped use:
mkdir -p .claude/skills
cp -R release-notes-writer .claude/skills/