By oryanmoshe
Battle-tested skills for disciplined AI-assisted development. Task tracking, parallel exploration, context preservation, code review, and more.
Fetches, organizes, and addresses PR review comments from GitHub. Use when user asks to review PR comments, fix PR feedback, check what reviewers said, address review comments, or handle bot suggestions on a pull request. Triggers on "review PR", "fix comments", "PR feedback", "what did reviewers say", "address PR feedback", "check PR comments".
Writes git commit messages using conventional commits format with gitmoji. Use when creating git commits, preparing commit messages, or when the user asks to commit changes. Triggers on "commit", "git commit", "save changes", or any request to record changes to version control.
Parallelizes codebase exploration and research by launching multiple subagents simultaneously. Use when exploring codebases, researching questions, investigating bugs, gathering context from multiple sources, or any task requiring search across multiple files, patterns, or directories. Triggers on research, exploration, debugging, "why does this happen", "how does X work", or multi-file investigation.
Grooms sprint tasks by cross-referencing Monday.com board with GitHub issues across multiple repos, then produces subitems, descriptions, linked issues, and SP estimates. Use when grooming a sprint, planning sprint tasks, preparing for sprint planning, or when user says "groom", "sprint planning", "cross-reference tasks and issues", "add subitems", or "create missing issues".
Creates and maintains AGENTS.md documentation files that guide AI coding agents through a codebase. Use when adding a significant new feature or directory, changing project architecture, setting up a new project or monorepo, noticing a codebase has no AGENTS.md, or after major refactors that change project structure. Also triggers on "document this for agents", "update agents.md", or "create agents.md".
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Battle-tested skills for disciplined AI-assisted development.
Because your AI agent should have good habits, not just good vibes.
AI coding agents are powerful but undisciplined. They forget what they were doing after context compaction. They write "updated stuff" commit messages. They start five things at once and finish none. They skip code review because "it's just a small change."
These skills fix that.
| Skill | What it does |
|---|---|
tracking-tasks | Never lose work to compaction — enforces task tracking across context boundaries |
exploring-in-parallel | Stop searching sequentially — launch multiple subagents simultaneously |
preserving-context | Capture working state before compaction so you can resume seamlessly |
committing-code | Conventional commits with gitmoji — no more "updated stuff" |
managing-agents-md | Create and maintain AGENTS.md so any AI agent can navigate your codebase |
addressing-pr-feedback | Fetch, organize, and address GitHub PR review comments systematically |
reviewing-code | Catch N+1 queries, security issues, and missing tests before they ship |
writing-skills | Meta-skill — how to write skills that actually trigger and work |
organizing-files | Organize macOS files across Desktop, Documents, Downloads, and iCloud Drive |
# Step 1: Add the marketplace
/plugin marketplace add oryanmoshe/agent-skills
# Step 2: Install the plugin
/plugin install agent-skills@oryanmoshe-skills
Done. All 9 skills are now available in every project.
git clone https://github.com/oryanmoshe/agent-skills.git
cp -r agent-skills/skills/* ~/.claude/skills/
git clone https://github.com/oryanmoshe/agent-skills.git
cp -r agent-skills/skills/* .cursor/skills/
cp -r agent-skills/skills/* .github/skills/
These skills follow the Agent Skills open standard. Any compatible tool can use them — just copy the skill folders to your tool's skills directory.
Each skill is a SKILL.md file with YAML frontmatter. The AI reads the description field and decides when to activate it automatically — no hooks, no configuration, no ceremony.
---
name: tracking-tasks
description: Enforces disciplined task tracking. Use when starting any coding task...
---
# Tracking Tasks
## Overview
Every action must be tracked...
Drop it in the skills directory. It just works.
For the full spec, see Extend Claude with skills.
The plugin includes a UserPromptSubmit hook that fires on every user message, reminding the agent to check skills before acting. This is a mechanical safety net — skills exist but agents rationalize past them. The hook makes skipping harder.
Plugin users get this automatically. For manual installs, add to ~/.claude/settings.json:
{
"hooks": {
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "echo 'SKILL CHECK: Before acting, scan the skills list. Invoke tracking-tasks + any matching domain skills BEFORE exploring, reading, or writing anything.'",
"timeout": 5
}
]
}
]
}
}
Want to add a skill? See AGENTS.md for conventions:
npx claudepluginhub oryanmoshe/agent-skills --plugin agent-skillsGeneral purpose Claude Code toolkit with research agents, skills, and introspection commands
Harness for Claude Code — skills, /harness:* slash commands, persona subagents, lifecycle hooks, and MCP tools without per-repo `harness setup`. Sibling plugins exist for Cursor, Gemini CLI, and Codex.
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.
Editorial "Essentials" bundle for Claude Code from Antigravity Awesome Skills.
No description provided.
Claude Code settings and skills for spec-driven development workflows