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

skills

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

skills مجمعة
71
Stars
14
محدث
2026-05-25
Forks
5
التغطية المهنية
7 فئات مهنية · 100% مصنفة
مستكشف المستودعات

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

simplify
محللو ضمان جودة البرمجيات والمختبرون

Code review and cleanup across reuse, quality, and efficiency dimensions. Launches three parallel review agents against the current diff, then aggregates findings and applies fixes.

2026-05-25
adversarial-self-test
محللو أمن المعلومات

Red-team the agent's own output against OWASP Top 10 for LLM Applications and Agentic AI. Self-inject, test boundaries, check exfiltration paths. If you can't attack your own output, someone else will.

2026-05-24
chain-of-verification
مطوّرو البرمجيات

Mandatory verification of every factual claim before emission. API contracts, dependency versions, file existence, behavior promises — claims about code are hypotheses until verified against the actual source. Based on Dhuliawala et al. (Meta FAIR, ACL 2024).

2026-05-24
diagnose
مطوّرو البرمجيات

Disciplined 6-step diagnosis loop with strict evidence gates between stages. Reproduce → minimise → hypothesise → instrument → fix → regression-test. Cannot advance without the required artifact per step.

2026-05-24
evaluator-optimizer-loop
مطوّرو البرمجيات

Split the workflow into Evaluator and Optimizer personas. Evaluator scores output 1–10 on correctness, completeness, safety, and simplicity. Optimizer rewrites to address critiques. Loop until score ≥9 or 3 iterations. Self-improvement without measurement is guessing.

2026-05-24
insecure-defaults
محللو أمن المعلومات

Detect fail-open security patterns: debug mode in production, permissive CORS, disabled CSRF, default admin credentials, verbose error messages, unauthenticated health endpoints. Configuration is code — review it with the same rigor.

2026-05-24
karpathy-rules
محللو ضمان جودة البرمجيات والمختبرون

Encode Andrej Karpathy's four LLM coding failure modes as enforceable audit gates: (1) Hallucinated APIs, (2) Over-engineered solutions, (3) Missing error handling, (4) Unverified assumptions. Every code block must pass all four gates.

2026-05-24
second-opinion
محللو ضمان جودة البرمجيات والمختبرون

Submit proposed code to an external LLM for bias-breaking review. The external model critiques with fresh eyes, uninfluenced by the session history. Tool-agnostic: uses any available external LLM API.

2026-05-24
sharp-edges
محللو أمن المعلومات

Flag error-prone APIs and dangerous configurations: eval(), exec(), unsafe string interpolation in SQL/Shell, missing fetch timeouts, process.exit() in library code, prototype pollution. Sharp edges aren't bugs until someone bleeds — flag them first.

2026-05-24
static-analysis
محللو أمن المعلومات

Orchestrate CodeQL, Semgrep, or ESLint security rules with decision logic: pick the right tool for the language, run it, parse SARIF output, and triage results by severity and confidence. Static analysis without triage is noise.

2026-05-24
tool-use-verification
مطوّرو البرمجيات

Pre-flight and post-flight checklist for every tool invocation. Verify scope, safety, and idempotency before running. Verify output matches expectations, no side effects, and error handling worked after. Tool calls are the agent's primary write surface.

2026-05-24
variant-analysis
محللو أمن المعلومات

Once a bug is found and understood, systematically grep, Semgrep, or CodeQL the entire codebase to find all other occurrences of the same vulnerability class. Find the class, not just the instance.

2026-05-24
autoplan
مطوّرو البرمجيات

Run the full planning pipeline in one command: CEO review → design review → engineering review → locked plan → issue decomposition. Sequential gated pipeline with pass/fail at each stage.

2026-05-24
context-tiering
مطوّرو البرمجيات

Manage context window as tiered memory: working (active, immediate access), reference (indexed, retrievable), and archival (compressed, summarized). Based on MemGPT/Letta tiered memory architecture.

2026-05-24
design-consultation
مطوّرو البرمجيات

Build a complete design system from scratch: 11-step color palettes (OKLCH-optimized), typography scale with ratio, spacing system, component tokens, and dark mode strategy. Outputs DESIGN.md and token files.

2026-05-24
design-shotgun
المصممون الجرافيكيون

Generate 3–5 radically different UI variations for the same feature to force divergence before convergence. Each variation has a memorable name, declared trade-offs, and a failure mode.

2026-05-24
document-generate
مطوّرو البرمجيات

Audit existing docs against the four Diataxis quadrants, identify empty quadrants, and generate missing documentation from scratch. Each generated doc serves its quadrant's specific user need.

2026-05-24
document-release
مطوّرو البرمجيات

Update all project docs to match shipped code; build a Diataxis coverage map showing which of the four quadrants (tutorials, how-tos, reference, explanation) have coverage and which are empty. Release-triggered documentation audit.

2026-05-24
plan-design-review
المصممون الجرافيكيون

Rate each design dimension 0–10 (typography, spacing, color, motion, interaction, accessibility, responsiveness), define what a 10 looks like, then edit the plan before implementation.

2026-05-24
benchmark
مطوّرو البرمجيات

Baseline Core Web Vitals (LCP, CLS, INP, TBT) and bundle sizes before and after every PR. Detect regressions >5% and flag them as blocking for performance-critical paths.

2026-05-24
browse
مطوّرو البرمجيات

Real browser-based exploration using available browser automation. Navigate JS-rendered pages, extract rendered content, take screenshots, interact with forms. Tool-agnostic: Playwright MCP, Puppeteer, or Chrome DevTools Protocol.

2026-05-24
canary
مديرو الشبكات وأنظمة الحاسوب

Post-deploy monitoring loop: T+1min console errors and crash rate, T+5min error budget and p99 drift, T+15min final health vs baseline. Escalate to rollback on threshold breach.

2026-05-24
land-and-deploy
مديرو الشبكات وأنظمة الحاسوب

Merge PR after CI green, monitor deployment pipeline through to production, verify health via dashboards and error budgets. Extends /ship beyond PR creation into the full land-and-verify loop.

2026-05-24
learn
متخصصو إدارة المشاريع

Manage cumulative knowledge across sessions: review recent learnings, search for recurring patterns, prune outdated entries, export insights for upcoming sessions. Multi-session institutional memory.

2026-05-24
write-a-skill
مطوّرو البرمجيات

Scaffold a new SKILL.md following the exact format contract, update all three registry files, and validate evidence and format compliance in one shot.

2026-05-24
ci-cd-pipeline-builder
مطوّرو البرمجيات

Analyze a repository's tech stack and generate production-ready CI/CD pipeline configurations (GitHub Actions, GitLab CI, or Azure DevOps). Includes build, test, security scan, dependency audit, and deployment stages. Enforces pipeline-as-code best practices: DRY, matrix testing, artifact management, and secrets governance.

2026-05-22
git-worktree
مطوّرو البرمجيات

Manage parallel git worktrees for isolated feature development, code review, and hotfix branches. Routes all git operations through a manager protocol that handles .env copying, port isolation, and dependency drift detection. Prevents cross-branch pollution and accidental commits to the wrong branch.

2026-05-22
mcp-server-builder
مطوّرو البرمجيات

Build a Model Context Protocol (MCP) server from an OpenAPI specification, database schema, or internal API. Generates tool schemas, request handlers, error mapping, and server transport configuration. Enforces type safety, input validation, and least-privilege access patterns.

2026-05-22
prototype
مطوّرو البرمجيات

Build a throwaway prototype to de-risk a design decision before committing to production code. Use for state-machine validation, API ergonomics testing, UI layout exploration, or algorithmic feasibility. The prototype is explicitly disposable — no tests, no types, no polish. Goal is learning speed, not shipping quality.

2026-05-22
simplifying-code
مطوّرو البرمجيات

Declutter code without changing behavior. Targets AI-generated slop: redundant comments, unnecessary defensive checks, over-abstraction, verbose stdlib reimplementations, and speculative generality. Applies changes in priority order and stops before touching public APIs or behavior.

2026-05-22
brainstorming
مطوّرو البرمجيات

Hard gate that prevents code generation until a design document is approved. Reads the codebase first, interviews the user one question at a time, proposes 2–3 named approaches with trade-offs, and saves a structured design doc to docs/brainstorms/. Use when requirements are vague or multiple valid interpretations exist.

2026-05-22
grill-me
متخصصو إدارة المشاريع

Relentless interrogation session that challenges a plan, design, or requirement until every branch of the decision tree is resolved. Prevents misalignment between human intent and agent output by forcing explicit trade-off declarations, scope boundaries, and failure-mode analysis before any code is written.

2026-05-22
incident-commander
متخصصو إدارة المشاريع

Active incident response protocol for production outages. Provides severity classification, communication templates, rollback decision trees, and post-incident report generation. Distinguishes between incident response (during) and postmortem (after). Enforces structured command-and-control to prevent panic-driven fixes.

2026-05-22
caveman
الكتّاب التقنيون

Ultra-compressed communication mode. Drops filler, hedging, and meta-commentary while preserving full technical accuracy. Reduces token usage ~75% without losing precision. Use when context windows are tight, iterating rapidly, or when you want raw signal over polished prose.

2026-05-22
reflect
متخصصو إدارة المشاريع

End-of-session retrospective that scans the full conversation for mistakes, friction points, and wins. Cites specific exchanges, proposes ranked improvements, and audits skills used for token efficiency. Captures institutional knowledge before context is lost.

2026-05-22
health-check
محللو ضمان جودة البرمجيات والمختبرون

Composite code quality score from linter, types, tests, and optional dead-code checks.

2026-05-20
investigate
مطوّرو البرمجيات

Systematic root-cause debugging with evidence before any fix is applied.

2026-05-20
skills-doctor
مطوّرو البرمجيات

Diagnose and fix: agent/skills setup, toolchain, app smoke, deep debug — apply fixes in-session when evidenced, else hand off to investigate.

2026-05-20
architecture-improvement
مطوّرو البرمجيات

Find deepening opportunities and boundary fixes using domain language.

2026-05-20
design-review
محللو ضمان جودة البرمجيات والمختبرون

Live visual and UX audit of web UI with evidence-backed findings.

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