← All creators

KhaledSaeed18

User

Reusable Claude Code skills, agents, hooks, and commands

30 indexed · 0 Featured · 0 stars · avg score 74
Prolific

Categories

Indexed Skills (30)

AI & Automation Listed

explain-codebase

Onboard to an unfamiliar codebase by mapping its architecture, entry points, and data flow. Use when starting work in a new or unknown repository and you need a navigable mental model fast.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

grill-with-docs

Stress-test a plan against the project's existing domain model by challenging terminology, surfacing contradictions with code, and updating CONTEXT.md and ADRs inline as decisions crystallise.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

grill-me

Relentlessly stress-test a plan, design, architecture, idea, or strategy until all critical decisions are resolved.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

create-skill

Author a new skill for this repository end to end by choosing its category, writing trigger-friendly frontmatter, structuring the SKILL.md, splitting reference material into companion files, then regenerating the registry and README catalog. Use when creating, scaffolding, restructuring, or reviewing a skill in this repo.

0 Updated yesterday
KhaledSaeed18
Code & Development Listed

changelog

Generate a changelog or release notes from Git history, grouped by change type, written in user-facing language, with issue/PR links and breaking changes called out. Conventional-Commits aware and Keep a Changelog formatted; respects any existing CHANGELOG or tooling. Use when preparing release notes or updating CHANGELOG.md.

0 Updated yesterday
KhaledSaeed18
Code & Development Listed

git-commit

Commit work the right way by gathering full repo state, respecting the project's commitlint/pre-commit/branch rules, staging only understood files, and writing a conventional-commit message whose body explains why. Use when committing, branching, or pushing changes.

0 Updated yesterday
KhaledSaeed18
Code & Development Listed

git-undo

Recover safely from Git mistakes such as discard, unstage, amend, reset, revert, restore lost commits via reflog, recover deleted branches, and fix bad rebases. Chooses the least-destructive fix and protects against data loss. Use when something in Git went wrong and needs undoing.

0 Updated yesterday
KhaledSaeed18
Code & Development Listed

gitignore

Generate or repair a .gitignore tailored to the project's actual stacks, frameworks, OS, and editors, and untrack files that are already committed but should be ignored. Flags secrets/build/dependency files that slipped into the repo. Use when creating, fixing, or auditing .gitignore.

0 Updated yesterday
KhaledSaeed18
Code & Development Listed

merge-conflict

Resolve Git merge, rebase, cherry-pick, revert, and stash conflicts safely by understanding both sides and the operation in progress before integrating, then verifying the result builds and passes tests. Use when a merge/rebase/cherry-pick stops with conflicts or "needs merge".

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

release-tag

Cut a release by determining the SemVer bump from history, updating version files across any stack, refreshing the changelog, creating an annotated (optionally signed) Git tag, and pushing the release safely after pre-flight checks. Use when tagging a version, bumping the version, or preparing a release.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

create-agent

Author a new subagent for this repository end to end by scaffolding it with pnpm new, curating its tool allowlist, setting model, color, and memory in frontmatter, then writing a focused system prompt and regenerating the registry. Use when creating, scaffolding, or reviewing an agent or subagent in this repo.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

create-command

Author a new slash command for this repository end to end by scaffolding it with pnpm new, writing the frontmatter and argument handling, drafting the prompt body, then regenerating the registry. Use when creating, scaffolding, or reviewing a slash command in this repo.

0 Updated yesterday
KhaledSaeed18
Data & Documents Listed

create-hook

Author a new Claude Code hook for this repository end to end by scaffolding it with pnpm new, writing the hook script and its settings.json wiring, documenting activation in HOOK.md, then regenerating the registry. Use when creating, scaffolding, or reviewing a hook in this repo.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

owasp-security

Review code being written or modified against the OWASP Top 10:2025 and ASVS secure-coding requirements, catching vulnerability classes before they ship. Works in any language or stack. Use when writing authentication or authorization logic, handling user input, adding API endpoints, choosing cryptographic operations, processing file uploads, or making any change that touches a trust boundary. Complements secret-scan (which finds credentials) and dependency-audit (which checks packages) with line-level vulnerability review.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

handoff

Compact the current conversation into a handoff document for another agent to pick up.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

pr-description

Generate a clear, reviewer-friendly pull-request description from a diff, covering what changed, why, risk, and how it was tested. Use when opening a pull request or writing/improving a PR body.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

dependency-audit

Audit a project's dependencies for outdated and vulnerable packages and surface breaking-change notes for upgrades. Works with any ecosystem, including npm/pnpm/yarn, pip/Poetry/uv, Cargo, Go modules, Maven/Gradle, Bundler, Composer, and others.

0 Updated yesterday
KhaledSaeed18
Code & Development Listed

secret-scan

Scan code or a diff for hardcoded secrets (API keys, tokens, passwords, private keys, and other exposed credentials) before they get committed or shipped. Use before committing, during review, or when auditing a repository.

0 Updated yesterday
KhaledSaeed18
Code & Development Listed

code-review-response

Process code-review feedback with technical rigour — understand each point, check it against the actual codebase, and respond with reasoning or implementation rather than reflexive agreement. Use when you receive review comments (from a human, the code-reviewer agent, or any reviewer) and are about to act on them, especially if any feedback seems unclear or wrong.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

executing-plans

Execute a written implementation plan task by task, reviewing it critically first, following each step exactly, running every verification, and stopping to ask rather than guessing when blocked. Use when you have a plan document (such as one from the writing-plans skill) and need to implement it in this session.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

parallel-agents

Fan independent work out to multiple subagents that run concurrently, each with a focused scope and self-contained instructions, then review and integrate their results. Use when you face two or more genuinely independent tasks — separate failing test files, unrelated bugs, distinct subsystems — that share no state and don't depend on each other's order.

0 Updated yesterday
KhaledSaeed18
Code & Development Listed

systematic-debugging

Debug a bug, test failure, crash, or unexpected behaviour by finding the root cause before changing anything, instead of guessing at fixes. Works in any language or stack. Use when something is broken, a test is failing, behaviour is wrong, or a previous fix didn't hold.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

test-driven-development

Implement a feature or bugfix test-first using the red-green-refactor cycle — write a failing test, watch it fail, write the minimal code to pass, then clean up. Works in any language or test runner. Use when building new behaviour or fixing a bug and you want the test to actually prove the code works.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

verify-completion

Gate every "it works / it's fixed / tests pass / done" claim behind fresh evidence — run the actual verifying command, read its output, and only then state the result. Use before committing, opening a PR, marking a task complete, handing off to or trusting a subagent, or otherwise asserting that work succeeded.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

writing-plans

Turn a spec or set of requirements into a detailed, task-by-task implementation plan an engineer (or a subagent) can execute without further context. Breaks work into bite-sized steps with exact file paths, real code, and verification commands. Use before starting a multi-step build, once you know what you're building.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

brainstorming

Turn a rough idea into a fully formed, written design through collaborative dialogue — exploring intent, requirements, and trade-offs one question at a time, then proposing approaches and capturing the agreed design in a spec before any code is written. Use at the start of any creative or feature work, when the idea isn't yet concrete enough to plan or build.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

finish-branch

Wrap up a completed development branch by verifying tests pass, detecting the workspace state, then presenting clear merge / PR / keep / discard options and executing the chosen one safely — including correct worktree and branch cleanup. Use when implementation is done, tests should be green, and you need to integrate or put away the work.

0 Updated yesterday
KhaledSaeed18
Code & Development Listed

git-worktrees

Set up an isolated workspace for feature work so the current branch and working tree stay untouched — detecting existing isolation first, preferring the platform's native worktree tooling, and falling back to git worktrees only when nothing native exists. Use before starting feature work that needs isolation, or before executing an implementation plan.

0 Updated yesterday
KhaledSaeed18
AI & Automation Listed

adversarial-reviewer

Review code through three hostile personas - the Saboteur, the New Hire, and the Security Auditor - each required to find at least one issue. Use when a standard review feels too comfortable, when code is going into a critical path, when a previous review missed bugs that later surfaced, or when you want coverage across correctness, clarity, and security in a single pass.

0 Updated yesterday
KhaledSaeed18
Web & Frontend Listed

webapp-testing

Verify a web application works correctly in a real browser using Playwright. Covers page navigation, form submission, user interactions, console error detection, screenshot capture, and responsive layout checking. Use when you need to confirm a UI feature actually works end-to-end, catch regressions after a change, verify a form flow completes, or check that the page is free of console errors. Requires Node.js; installs Playwright if not already present.

0 Updated yesterday
KhaledSaeed18

Bio shown is the top-scored skill's repo description as a fallback — real GitHub bios land in a future update.