Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

claude-skills

يحتوي claude-skills على 401 من skills المجمعة من cajias، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
401
Stars
0
محدث
2026-07-04
Forks
0
التغطية المهنية
22 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

ai-writing-analyzer
الكتّاب التقنيون

Detect AI writing patterns in text. Use when: (1) need to check if text sounds AI-generated, (2) reviewing content before publication, (3) analyzing writing for Wikipedia-style AI markers, (4) generating report-only analysis without changes.

2026-07-04
ai-writing-detector
الكتّاب التقنيون

Use when: (1) User asks to "review for AI writing" or "check for LLM signs" (2) User wants to "detect AI-generated text" or "humanize this document" (3) User wants to identify and fix signs of AI/LLM-generated writing (4) User mentions Wikipedia AI writing guidelines

2026-07-04
ai-writing-fixer
المحررون

Fix AI writing patterns in text. Use when: (1) ai-writing-analyzer found issues to fix, (2) need to humanize AI-generated content, (3) preparing content for publication, (4) iteratively refining text until clean.

2026-07-04
ai-writing-humanizer
المحررون

Humanize a document by removing AI-writing patterns via a multi-agent workflow (analyze → revise → adversarial review → loop-until-clean). Use when the user asks to "humanize", "de-AI", "remove AI tells", or "review for AI writing" on a file.

2026-07-04
cc-slash-command-argument-hint-yaml
مطوّرو البرمجيات

Fix for Claude Code slash command frontmatter that fails to parse when `argument-hint:` is given square-bracketed placeholder values. Use when: (1) authoring `commands/<name>.md` files in a CC plugin and the frontmatter shows `argument-hint: [working-dir] [team-name]` or similar multi-token bracketed values; (2) a frontmatter-validation test (e.g. `yaml.safe_load(block)` over the SKILL/command frontmatter) raises `ScannerError` or `ConstructorError` complaining about flow sequences or "expected a mapping"; (3) the slash command silently doesn't appear in `/help` after install, or a plugin-marketplace test asserting the `description` field is present trips because the whole frontmatter parse blew up. The fix is to QUOTE the value as a single string. Covers the same trap for `commands/<name>.md` directly authored in CC format AND APM-managed marketplaces shipping commands via APM.

2026-06-29
github-issue-grooming
متخصصو إدارة المشاريع

Organize GitHub repository issues with proper milestones, native relationships, and clean labeling structure. Use when grooming issues, setting up milestones, establishing dependencies, or cleaning up issue tracking in a GitHub repository.

2026-06-29
q-chat-integration
مطوّرو البرمجيات

Enable Claude Code to delegate specific tasks to Amazon Q CLI agents running in the background with full tool permissions. Use when bridging to Q's specialized integrations such as Quip, ticketing systems, or diagram generation that Claude doesn't have direct access to.

2026-06-29
quip-document-writer
فنيو النشر المكتبي

Transfer markdown documents to Quip with proper formatting validation, handling common issues with lists, tables, and diagrams that occur during bulk uploads. Use when writing or syncing markdown content to Quip documents with section-by-section transfer for reliability.

2026-06-29
readme-generator
مطوّرو البرمجيات

Generate or improve README files through iterative analysis and refinement. Analyzes project codebase, creates or enhances README content following best practices, evaluates quality, and applies improvements until a quality threshold is met or maximum iterations reached.

2026-06-29
software-effort-estimation
مطوّرو البرمجيات

Generate comprehensive software effort estimation reports that analyze codebase complexity, calculate traditional development effort across five estimation models, and quantify productivity gains from LLM-assisted development. Use when estimating project cost, valuing a codebase, or comparing AI-assisted vs traditional development effort.

2026-06-29
claude-skills-tdd-plan
مطوّرو البرمجيات

Use when user says "create a tdd plan", "tdd loop", "iterative plan", "ralph-loop plan", "create plan for ralph". Generates a TDD-based plan formatted for ralph-loop execution with concurrent tasks, pr-review validation, and optional deploy/integration test steps.

2026-06-29
tell-q-agent-router
مطوّرو البرمجيات

Intelligently route tasks to the most appropriate Amazon Q CLI agent based on task type, with support for explicit agent selection and special workflow patterns. Use when delegating tasks to Q agents or triggering the quip-upload workflow for file uploads to Quip.

2026-06-29
claudeception
مطوّرو البرمجيات

Extract reusable skills from Claude Code sessions. Triggers: /claudeception command, "save this as a skill", "what did we learn?". Creates SKILL.md files for non-obvious discoveries, workarounds, and debugging insights.

2026-04-14
bash-subagent-write-limitation
مطوّرو البرمجيات

Fix for Task tool subagents with subagent_type=Bash being unable to write files when PreToolUse hooks block write operations. Use when: (1) dispatching parallel Bash agents to implement code in worktrees, (2) agents report "Permission to use Bash has been auto-denied", (3) agents can read files but all write/touch/cp/dd commands fail. Solution: write files from the parent session using Write/Edit tools, then optionally dispatch Bash agents only for validation (lint, test, typecheck).

2026-04-14
cdk-multiple-lock-file-bundling
مديرو الشبكات وأنظمة الحاسوب

Fix AWS CDK bundling failures caused by multiple package lock files in the same project. Use when: (1) CDK synth/deploy fails with "ValidationError: Multiple package lock files found: pnpm-lock.yaml, package-lock.json", (2) NodejsFunction or other bundled Lambda fails during cdk synth, (3) CI pipeline fails on test stage with CDK bundling errors. Covers determining which lock file to keep based on project's actual package manager.

2026-04-14
cdk-temp-folder-disk-bloat
مطوّرو البرمجيات

Fix disk space exhaustion caused by AWS CDK temp folder accumulation on macOS. Use when: (1) Disk is full or nearly full with no obvious cause, (2) Running CDK synth, deploy, or tests (especially in TDD loops), (3) /private/var/folders is consuming tens of gigabytes, (4) cdk.out folders accumulating in temp directory, (5) Standard cache cleanup (npm, go, homebrew) doesn't recover space, (6) Running parallel subagents with CDK operations in Claude Code. Covers diagnosis, cleanup, and prevention for CDK projects.

2026-04-14
cdk-test-optimization
محللو ضمان جودة البرمجيات والمختبرون

Fix extremely slow AWS CDK tests (30+ minutes for a single test file). Use when: (1) CDK tests take 30+ minutes to run, (2) Each test creates `new cdk.App()` in beforeEach, (3) Tests trigger Docker image builds repeatedly, (4) Jest shows tests running but no progress for minutes, (5) Disk fills up during test runs (see also: cdk-temp-folder-disk-bloat). Solution: Use beforeAll to share CDK synthesis across tests.

2026-04-14
claude-code-marketplace-management
مطوّرو البرمجيات

How to discover and add Claude Code plugin marketplaces. Use when: (1) user asks about claudemarketplaces.com or similar discovery sites, (2) user wants to add a plugin marketplace, (3) confusion between marketplace directories and actual marketplaces, (4) user runs /plugin marketplace commands. Covers the distinction between discovery directories and installable marketplaces.

2026-04-14
claude-session-analysis
مديرو الشبكات وأنظمة الحاسوب

Analyze Claude Code sessions to extract configuration improvements. Use when: (1) Want to optimize Claude Code setup (skills, permissions, CLAUDE.md), (2) Need to find what tools should be pre-granted (repeated permission requests), (3) Looking for skills to create (repeated investigation patterns), (4) Finding rules to add to CLAUDE.md (user corrections indicate missing guidance), (5) Diagnosing why sessions went poorly (compactions, interruptions). The goal is actionable improvements, not just metrics.

2026-04-14
cloudformation-kms-alias-collision
مديرو الشبكات وأنظمة الحاسوب

Fix CloudFormation deployment failures caused by KMS alias collisions. Use when: (1) CDK deploy fails with "AWS::EarlyValidation::ResourceExistenceCheck" error, (2) Multiple CDK stacks create KMS keys with similar aliases, (3) Deployment fails before changeset execution due to resource existence check. Covers diagnosing KMS alias conflicts and resolving them in CDK stacks.

2026-04-14
correction-avoid-build-loca
مطوّرو البرمجيات

Learned from user correction: Correction: Avoid: 'build locally'

2026-04-14
correction-avoid-cancel
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'cancel!'

2026-04-14
correction-avoid-cite-genai
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'cite genai-powered sdlc guide as a source'

2026-04-14
correction-avoid-delete-670
مدقّقو النصوص ومحرّروها

Learned from user correction: Correction: Avoid: 'delete 670'

2026-04-14
correction-avoid-delete-rec
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'delete recordings'

2026-04-14
correction-avoid-delte-the
مطوّرو البرمجيات

Learned from user correction: Correction: Avoid: 'delte the vectors!!!'

2026-04-14
correction-avoid-deploy-yet
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'deploy yet until we have a better picture of what happened in v2' | Expected behavior: 'match v2's should be the same as v2's'

2026-04-14
correction-avoid-do-a-separ
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'do a separte plugin'

2026-04-14
correction-avoid-do-it-agai
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'do it again'

2026-04-14
correction-avoid-do-it-till
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'do it till i tell you &'

2026-04-14
correction-avoid-do-that
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'do that'

2026-04-14
correction-avoid-do-the-loo
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'do the loop manually'

2026-04-14
correction-avoid-forget-it
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'forget it'

2026-04-14
correction-avoid-have-to-wa
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'have to wait for 670 to merge to retrigger'

2026-04-14
correction-avoid-investigat
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'investigate. create a task and spawn an agent to investigate'

2026-04-14
correction-avoid-map-clearl
مدقّقو النصوص ومحرّروها

Learned from user correction: Correction: Avoid: 'map clearly to any specific sdlc phase: - `normalize-structure-after-exploration' | Expected behavior: 'be tagged with which sdlc phases based on my review of all 73 files (notes 293-365)'

2026-04-14
correction-avoid-mention-an
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'mention any of the gitlab common repos we have with toosl'

2026-04-14
correction-avoid-mention-gi
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'mention github anywhere'

2026-04-14
correction-avoid-miss-any-k
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'miss any knowledge' | Expected behavior: 'include revieweing existing hubs and their attached links and performing a gathering of the relevant notes for the given section before startin on the section to make sure we dont miss any knowledge'

2026-04-14
correction-avoid-misss-any
متخصصو إدارة المشاريع

Learned from user correction: Correction: Avoid: 'misss any info'

2026-04-14
عرض أهم 40 من أصل 401 skills مجمعة في هذا المستودع.