A curated collection of enterprise AI agent skills for Atlassian, DevOps, and productivity workflows.
This repository contains reusable agent skills built by Compasify. Each skill is self-contained in its own folder with a SKILL.md file containing instructions and metadata that AI agents use to perform specialized tasks.
Skills work with any AI coding assistant that supports the Agent Skills standard:
- Claude Code (plugin marketplace)
- OpenCode
- Cursor
- Windsurf
- Antigravity
- VS Code + Cline/Roo
| Skill | Description |
|---|---|
| confluence-dc | Manage Confluence Data Center pages/blogs with safety guards, MCP integration, and API fallback (synced from compasify/confluence-skill) |
| long-md-writer-copy | Last-resort fallback — create empty file and print content in txt code block for manual copy-paste |
| md-long-content-writer | Write large Markdown files (100+ lines) reliably with chunked appends and fallback scripts |
| precheck | Mandatory pre-change assessment — research codebase, assess impact, evaluate fitness before any code change |
git clone https://github.com/compasify/skills.gitFor maintainers: Some skills are managed via
git subtree. See Contributing for sync commands.
Install via the skills.sh CLI — works with Claude Code, Cursor, OpenCode, Windsurf, Cline/Roo, AMP, Codex, and more:
# Install confluence-dc from this monorepo
npx skills add compasify/skills --skill confluence-dc
# Or install from the standalone repo
npx skills add compasify/confluence-skill
# Install to a specific agent only
npx skills add compasify/skills --skill confluence-dc -a claude-code
# Install globally (user-level, all projects)
npx skills add compasify/skills --skill confluence-dc -g/plugin marketplace add compasify/skills
/plugin install confluence-dc@compasify-skills
Clone this repo and copy the skill folder to your agent's skills directory:
# OpenCode (project-level)
cp -r skills/confluence-dc .opencode/skills/
# OpenCode (user-level, all projects)
cp -r skills/confluence-dc ~/.config/opencode/skills/
# Claude Code
cp -r skills/confluence-dc ~/.claude/skills/
# Cursor
cp -r skills/confluence-dc ~/.cursor/skills/
# Universal (.agents/ convention)
cp -r skills/confluence-dc ~/.agents/skills/Use the template as a starting point:
---
name: my-skill-name
description: A clear description of what this skill does and when to use it.
---
# My Skill Name
[Instructions here]Each skill folder can contain:
my-skill/
├── SKILL.md # Required: instructions + metadata
├── scripts/ # Optional: executable code
├── references/ # Optional: documentation
├── LICENSE.txt # License for this skill
└── assets/ # Optional: templates, resources
Contributions welcome! Please:
- Fork the repository
- Create a skill in
skills/your-skill-name/ - Include a
SKILL.mdwith proper frontmatter - Submit a pull request
Some skills (e.g. confluence-dc) are synced from standalone repos via git subtree.
# Pull latest changes from upstream
git subtree pull --prefix=skills/confluence-dc https://github.com/compasify/confluence-skill.git main --squash
# Push local changes back to upstream
git subtree push --prefix=skills/confluence-dc https://github.com/compasify/confluence-skill.git mainMIT License — see LICENSE for details.
Individual skills may have their own license terms noted in their LICENSE.txt files.
Compasify — github.com/compasify
Maintained by Bùi Thế Hiển (@nickhien)