A collection of Agent Skills used by Sister Software.
These skills work with any agent that supports the Agent Skills standard, including Claude Code, OpenCode, OpenAI Codex, and Pi.
Install using the plugin marketplace:
/plugin marketplace add sister-software/skills
/plugin install sister-software@sister
Install from the Pi Marketplace or add manually via Settings > Rules > Add Rule > Remote Rule (Github) with sister-software/skills.
Install using the npx skills CLI:
npx skills add https://github.com/sister-software/skills
Clone this repo and copy the skill folders into the appropriate directory for your agent:
| Agent | Skill Directory | Docs |
|---|---|---|
| Claude Code | ~/.claude/skills/ |
docs |
| Cursor | ~/.cursor/skills/ |
docs |
| OpenCode | ~/.config/opencode/skills/ |
docs |
| OpenAI Codex | ~/.codex/skills/ |
docs |
| Pi | ~/.pi/agent/skills/ |
docs |
Commands are user-invocable slash commands that you explicitly call.
| Command | Description |
|---|
Skills are contextual and auto-loaded based on your conversation. When a request matches a skill's triggers, the agent loads and applies the relevant skill to provide accurate, up-to-date guidance.
| Skill | Description |
|---|---|
de-slop |
Detect and remove "LLM smells" (AI-slop tells) from any text or document. |
deepseek-consult |
Consult DeepSeek for architectural review, code feedback, or a second opinion — with built-in calibration. |
Some skills are backed by an MCP server in mcp-servers/. These ship Node code and need their dependencies installed before use.
| Server | Backs skill | Tool |
|---|---|---|
deepseek-consult |
deepseek-consult |
consult_deepseek |
The repo's .mcp.json registers them for plugin installs via ${CLAUDE_PLUGIN_ROOT}. Dependencies (node_modules) are gitignored and resolved automatically:
- Plugin install — the
SessionStarthook inhooks/hooks.jsoninstalls each server's runtime deps into the persistent${CLAUDE_PLUGIN_DATA}and symlinks them into place. Nothing to run. - Local dev — the servers are npm workspaces; one
npm installat the repo root installs everything.
See each server's README for auth and registration details.