settings — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited settings (Hook) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<p align="center"> <h1 align="center">agent-skills</h1> <p align="center"> Battle-tested skills for disciplined AI-assisted development. <br /> <em>Because your AI agent should have good habits, not just good vibes.</em> </p> <p align="center"> <a href="https://agentskills.io"><img src="https://img.shields.io/badge/Agent_Skills-compatible-blue" alt="Agent Skills Compatible" /></a> <a href="https://code.claude.com"><img src="https://img.shields.io/badge/Claude_Code-ready-blueviolet" alt="Claude Code Ready" /></a> <a href="https://github.com/oryanmoshe/agent-skills/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-green" alt="MIT License" /></a> <a href="https://github.com/oryanmoshe/agent-skills/pulls"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen" alt="PRs Welcome" /></a> <a href="https://github.com/oryanmoshe/agent-skills/commits/main"><img src="https://img.shields.io/github/last-commit/oryanmoshe/agent-skills" alt="Last Commit" /></a> </p> </p>
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-skillsDone. 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:
tracking-tasks, not task-trackercommitting-code skillMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.