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

aberrantCode

عرض على مستوى المستودعات لـ 292 skills مجمعة عبر 4 مستودعات GitHub.

skills مجمعة
292
مستودعات
4
محدث
2026-07-05
مستكشف المستودعات

المستودعات و skills الممثلة

vercel-composition-patterns
مطوّرو البرمجيات

React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.

2026-07-05
vercel-react-best-practices
مطوّرو البرمجيات

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

2026-07-05
accumulated-feature-branch-workflow
مطوّرو البرمجيات

Use when implementing multiple related enhancements, or a large feature that must be split across risk boundaries, and you need to decide branch/PR structure. Covers accumulating related work on one shared branch with atomic commits per enhancement, splitting risky multi-PR features along risk seams, and safely handling a branch that has both committed and dirty (uncommitted) work when shipping.

2026-07-05
additive-merge-conflict-resolution
مطوّرو البرمجيات

Use when a rebase or merge reports conflicts on a file where both branches only appended or inserted new content (append-only logs, registries, holding-pen documents) rather than editing the same lines. Recognizes the conflict as a false signal and resolves it as a union-keep-both operation instead of a real semantic merge.

2026-07-05
brand-token-extraction-and-documentation
مصممو واجهات الويب والرقمية

Use when reskinning an app with a real brand's visual identity — extract the actual palette from a live site's raw CSS (not markdown), recreate logo/icon assets programmatically with documented extraction rationale, and codify everything as versioned, named design tokens rather than one-off hardcoded values.

2026-07-05
conversation-history-mining-for-domain-knowledge
مطوّرو البرمجيات

Use when building a skill, doc, or knowledge base for an existing internal service or codebase, or when asked to audit past sessions for recurring failures and gaps — mine prior Claude conversation transcripts instead of reverse-engineering from logs or current code alone.

2026-07-05
crlf-gitattributes-normalization
مطوّرو البرمجيات

Use when a Windows/Linux-mixed repo shows spurious linter "Delete ␍" warnings, gofmt/prettier flags files as unformatted after a clean rebase, or golden-fixture tests fail on byte-exact CRLF-vs-LF comparisons — normalizes line endings via .gitattributes rather than reformatting or skipping tests.

2026-07-05
css-variables-for-multi-theme-reskin
مصممو واجهات الويب والرقمية

Use when a mockup, dashboard, or app needs light/dark modes and/or multiple brand palettes, or when asked to "reskin" or "retheme" an existing interface without touching its structure or interaction logic.

2026-07-05
عرض أهم 8 من أصل 247 skills مجمعة في هذا المستودع.
project-manager
مطوّرو البرمجيات

Automated project implementation orchestrator that drives feature-driven development from a single initial prompt through to completed code. Use this skill when the user invokes /init-project, /init-features, /add-feature, /continue-tasks, /continue-new-session, /iterate-tasks, /review-tasks, /update-tasks, /analyze-features, or /reinit. Also trigger proactively when docs/INITIAL_PROMPT.md exists and the user says anything like "move forward", "keep building", "what's next", "continue the implementation", or "start working on the project", AND when the user says "set up project management", "bootstrap a new project", "initialize the project workflow", or "make sure agents follow the project plan". This skill manages the full lifecycle: scaffolding a new project with enforcement artifacts, extracting feature specs via interview, generating phased implementation plans, spawning typed agents to execute tasks, monitoring completion sentinels, recovering from failures, and archiving finished work — all driven by m

2026-05-25
continue-new-session
مطوّرو البرمجيات

Generate a copy-ready prompt that a fresh session (Claude Code, Codex, or Gemini) can paste in to immediately begin work on the next recommended action that was identified in this session's most recent recap. Reference-style — names file paths with short excerpts, no large inline content.

2026-05-25
iterate-tasks
مطوّرو البرمجيات

Self-perpetuating, subagent-driven iteration of the project pipeline. One invocation: (1) merges any pending PR left by the previous turn, (2) dispatches the recap-recommended next action as a fresh subagent so each unit of work gets a clean context, then (3) emits a copy-ready prompt for the action that comes AFTER the one just completed. Designed to pair with /loop for unattended runs and to minimize parent-context growth.

2026-05-25
continue-tasks
مطوّرو البرمجيات

Run the full project orchestration loop with approved-spec gating, dependency ordering, verified completion, and deterministic failure/blocked handling

2026-05-21
init-project
مطوّرو البرمجيات

Use when starting a new project from scratch or retrofitting the project-manager workflow onto an existing repo. Scaffolds the docs/ tree, copies canonical templates, installs agent-enforcement artifacts (AGENTS.md, CLAUDE.md fragment, pre-commit guard, Claude Code hook, PR template, ROADMAP), and seeds INITIAL_PROMPT.md. Idempotent: re-running only fills gaps.

2026-05-21
review-tasks
متخصصو إدارة المشاريع

Dry-run project status report. Produces a read-only snapshot of feature specs, dependency blockers, plans, active tasks, stale work, verification backlog, and open issues without spawning agents or modifying files.

2026-05-21
update-tasks
متخصصو إدارة المشاريع

Reconcile active task files with plans without spawning new workers, including success, failure, blocked, malformed, and stale states

2026-05-21
comment-harvesting
مطوّرو البرمجيات

Domain expertise for harvesting comments and threads from a YouTube video using yt-dlp. Sub-skill of `youtube-extraction`. Use when the parent skill needs comments as a primary source for filenames, repo URLs, corrections, and creator follow-ups that don't appear in the video itself.

2026-05-21
عرض أهم 8 من أصل 23 skills مجمعة في هذا المستودع.
release-to-main
مطوّرو البرمجيات

Use when the user wants to merge dev into main for a production release — covers rebasing dev from main if behind, automatic semantic versioning from conventional commits, merge commit, release tagging, and syncing dev back onto main.

2026-07-05
ship-to-dev
مطوّرو البرمجيات

Use when the user wants to ship current working changes through a feature branch PR into the DEV branch — covers pulling latest, staging, committing, pushing, PR creation, merge, branch cleanup, and syncing DEV locally.

2026-07-05
analyze-features
مطوّرو البرمجيات

Audit all feature specs in docs/features/ against the current template, CAP-ID standards, open questions, logical gaps, and plan coverage — then request user authorization before making any changes

2026-04-09
base
مطوّرو البرمجيات

Universal coding patterns, constraints, TDD workflow, atomic todos

2026-04-09
code-deduplication
مطوّرو البرمجيات

Prevent semantic code duplication with capability index and check-before-write

2026-04-09
code-review
محللو ضمان جودة البرمجيات والمختبرون

Mandatory code reviews via /code-review before commits and deploys

2026-04-09
commit-hygiene
مطوّرو البرمجيات

Atomic commits, PR size limits, commit thresholds, stacked PRs

2026-04-09
continue-tasks
مطوّرو البرمجيات

Run the full HomeRadar project orchestration loop — picks up the next todo task, spawns the appropriate agent, and iterates until all tasks are complete

2026-04-09
عرض أهم 8 من أصل 21 skills مجمعة في هذا المستودع.
عرض 4 من أصل 4 مستودعات
تم تحميل كل المستودعات