Skip to main content
Manusで任意のスキルを実行
ワンクリックで
aberrantCode
GitHub クリエイタープロフィール

aberrantCode

4 件の GitHub リポジトリにある 292 件の収集済み skills をリポジトリ単位で表示します。

収集済み 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
このリポジトリの収集済み skills 247 件中、上位 8 件を表示しています。
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
このリポジトリの収集済み skills 23 件中、上位 8 件を表示しています。
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
このリポジトリの収集済み skills 21 件中、上位 8 件を表示しています。
4 件中 4 件のリポジトリを表示
すべてのリポジトリを表示しました