Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
MCKRUZ
GitHub 제작자 프로필

MCKRUZ

6개 GitHub 저장소에서 수집된 44개 skills를 저장소 단위로 보여줍니다.

수집된 skills
44
저장소
6
업데이트
2026-07-17
저장소 탐색

저장소와 대표 skills

comfyui-character-gen
소프트웨어 개발자

Build identity-preserving character generation workflows and pipelines in ComfyUI. Selects the optimal identity method (InfiniteYou, FLUX Kontext, PuLID, InstantID, IP-Adapter) based on use case requirements. Handles face preservation, likeness transfer, cross-domain conversion (3D to photo), multi-reference consistency, iterative character editing, and character variation generation. Triggers on requests to generate consistent characters, preserve identity across images, create face-swapping workflows, or convert 3D renders to photorealistic portraits. Does NOT cover general image generation without identity preservation, model training/LoRA fine-tuning, animation, technical explanations, or workflow debugging.

2026-03-18
comfyui-prompt-interview
기술 작가

Guided conversational interview to understand a user's creative vision before generating model-appropriate image prompts. Asks clarifying questions about subject, mood, style, and technical preferences (4-7 exchanges), then synthesizes positive prompt, negative prompt, recommended settings table, and pipeline recommendation. Formats prompts for the target model (SDXL tag-style, FLUX natural language, SD1.5 weighted tokens). Triggers on "I want to create...", "help me make an image of...", "I have an idea for...", "help me craft a prompt", "write me a prompt for...", or any request for help describing a creative vision. Does NOT cover workflow building, prompt debugging/fixing, technical explanations, model training, code generation, or identity-preserving character generation.

2026-03-18
comfyui-video-pipeline
소프트웨어 개발자

Generate videos using ComfyUI with Wan 2.2, FramePack, or AnimateDiff. Handles image-to-video, text-to-video, talking heads, and motion-controlled animation. Use when creating any video content from character images or text descriptions.

2026-03-18
comfyui-video-production
소프트웨어 개발자

Plan and orchestrate end-to-end video production pipelines in ComfyUI with validation gates and error recovery. Handles img2vid, txt2vid, vid2vid, and multi-shot video production. Produces pipeline plans with correct step ordering (generate, validate, animate, validate, concat), model selection, retry strategies (seed randomization, parameter adjustment, model fallback), and VRAM-aware resource management. Use when asked to make a video, animate images, create a multi-shot video, set up a video pipeline, or orchestrate video production in ComfyUI. Does NOT cover still image generation, prompt writing, workflow building for non-video tasks, video editing in external tools, model training, installation, or hardware recommendations.

2026-03-18
comfyui-workflow-builder
소프트웨어 개발자

Generate, build, create, or design ComfyUI workflow JSON from natural language descriptions. Produces valid node graphs with correct class_types, connections, output indices, and model-appropriate settings. Handles txt2img, img2img, inpainting, ControlNet, LoRA stacking, upscaling, and face detailing pipelines. Does NOT cover ComfyUI installation, custom node development, Python scripting, model training, hardware advice, or architectural explanations.

2026-03-18
comfyui-api
소프트웨어 개발자

Connect to a running ComfyUI instance, queue workflows, monitor execution, and retrieve results. Supports both online (REST API) and offline (JSON export) modes. Use when executing ComfyUI workflows or checking server status.

2026-02-06
comfyui-inventory
소프트웨어 개발자

Discover and cache all installed ComfyUI models, custom nodes, and system capabilities. Works online (API queries) and offline (directory scanning). Use before generating workflows to verify available resources.

2026-02-06
comfyui-lora-training
소프트웨어 개발자

Prepare datasets and configure LoRA training for character consistency. Covers FLUX (AI-Toolkit, SimpleTuner, FluxGym) and SDXL (Kohya_ss) training with step-by-step guidance. Use when training custom character LoRAs.

2026-02-06
이 저장소에서 수집된 skills 15개 중 상위 8개를 표시합니다.
default-agent
기타 컴퓨터 관련 직업

General-purpose conversational assistant that reads project files and renders images, forms, and tables inline in its answers.

2026-07-03
research-agent
소프트웨어 개발자

Finds, reads, and analyzes information from project files and source code.

2026-07-03
dashboard-agent
소프트웨어 개발자

Conversational agent embedded in the observability dashboard. Reads the current view and acts on it — changes the time range, navigates between pages, and refreshes data — and can list the available metrics.

2026-06-28
iac-authoring
소프트웨어 개발자

Scaffold a Terraform or Bicep module, validate and plan it, and security-scan it before proposing the change. Plan and scan only — this skill never deploys.

2026-06-08
gitops-cluster-debug
네트워크·컴퓨터 시스템 관리자

Root-cause cluster problems with K8sGPT analysis and live health, without mutating the cluster. Returns LLM-shaped findings; remediation is out of scope for this skill.

2026-06-08
gitops-knowledge
소프트웨어 개발자

Retrieve past GitOps learnings, incidents, and resolutions from the knowledge base and correlate them with live K8sGPT analysis. Read-only — retrieval and reasoning, no cluster or repo changes.

2026-06-08
gitops-repo-audit
소프트웨어 개발자

Detect drift between desired Git state and the live cluster, read cluster health, and propose a Git-side remediation as a ChangeProposal. Never mutates the cluster or repo directly.

2026-06-08
workspace
소프트웨어 개발자

Read, list, write, and verify files in a sandbox-injected working copy. Write goes through ChangeProposal — never direct mutation.

2026-06-08
이 저장소에서 수집된 skills 12개 중 상위 8개를 표시합니다.
claude-code-sdlc
기타 컴퓨터 관련 직업

SDLC orchestration plugin for Claude Code. Drives projects through a 9-phase software development lifecycle with company-configurable profiles, compliance gates, and quality enforcement. Triggers: "start sdlc", "sdlc setup", "initialize project lifecycle", "run phase gate", "advance phase", "sdlc status", "compliance check", "project setup wizard", "lifecycle management".

2026-07-17
api-pattern-node
소프트웨어 개발자

Add a new endpoint / route / use case / service the way this Node + TypeScript codebase already does it. Use when building an API surface, a request handler, a validator, a port/adapter, or a container registration in a Node/TypeScript repo. Finds the one canonical example and mirrors its layering, validation, error model, and test shape — so agents extend the codebase instead of inventing a second way to do something it already does. The Node realization of the core api-pattern skill.

2026-07-16
api-pattern-python
소프트웨어 개발자

Add a new module / CLI command / service function / loader the way this Python codebase already does it. Use when building a public surface, a command entry point, a data loader, a validator, or a new package module in a Python / uv repo. Finds the one canonical example and mirrors its layering, typing, error model, and test shape — so agents extend the codebase instead of inventing a second way to do something it already does. The Python realization of the core api-pattern skill.

2026-07-16
eval-builder
소프트웨어 품질 보증 분석가·테스터

Build a golden set for an agentic (LLM-powered) spec — the acceptance criteria for probabilistic behavior. Use when a spec's deliverable is an agent/prompt/tool and needs evals before build, or when adding cases from a production failure. Produces a versioned golden-set.yaml under eval-datasets/specs/<feature>/, referencing the spec file.

2026-07-16
api-pattern-dotnet
소프트웨어 개발자

Add a new endpoint / MediatR command or query / handler / service the way this .NET codebase already does it. Use when building an API surface, a CQRS handler, a controller, a validator, or a DI registration in a .NET / Clean Architecture repo. Finds the one canonical example and mirrors its layering, validation, error model, and test shape — so agents extend the codebase instead of inventing a second way to do something it already does. The .NET realization of the core api-pattern skill.

2026-07-16
api-pattern
소프트웨어 개발자

Add a new endpoint / handler / service the way this codebase already does it. Use when building an API surface, a CQRS handler, a controller, or a service registration. Finds the one canonical example and follows it exactly — so agents reuse the established pattern instead of inventing a new one each run.

2026-07-01
diagnose
소프트웨어 품질 보증 분석가·테스터

The team's bug-fix procedure: reproduce with a FAILING TEST first, then fix, then prove the test passes. Use whenever a bug is reported. Do not start by patching — start by reproducing. For deep root-cause hunts, invoke the debugger agent from inside this procedure.

2026-07-01
pr-writer
소프트웨어 개발자

Open a spec's PR correctly: the right branch, a conventional-commit title, a body that maps the diff to the spec's acceptance checks with a test plan, and the spec file included in the diff. Use when a change is ready to push for review.

2026-07-01
이 저장소에서 수집된 skills 10개 중 상위 8개를 표시합니다.
research-refresh
시장조사 분석가·마케팅 전문가

Use this skill when the user asks to "refresh research", "update the catalog", "re-run the framework research", "check for new methodologies", "update mck-scaffold", or when /mck-scaffold:init Step 0 detects a stale `research/last-run.json` and the user opts in. Orchestrates 4 parallel research subagents (GitHub / Reddit / YouTube / web-blogs), diffs new findings against the current catalog in `research/streams/*.md`, surfaces the diff for user-confirmed application to `interview/routing.md` and methodology preset templates, then updates `research/last-run.json` + `research/changelog.md`.

2026-05-20
methodology-picker
프로젝트 관리 전문가

Use this skill when the user asks to "set up a new project", "start a new project", "scaffold a project", "pick a methodology", "choose an SDD framework", "configure Claude Code for this project", "what methodology should I use", or discusses agentic development methodology selection. Helps the user route to the right Spec-Driven Development approach based on Piskala's three-level rigor taxonomy and Wasowski's four decision contexts. Does NOT write files — conversational guidance only. For actual scaffolding, route to /mck-scaffold:init.

2026-05-20
init
소프트웨어 개발자

Initialize a new Claude Code project with a tailored Spec-Driven Development methodology. Runs an interview to determine the right approach (L1 Spec-First / L2 Spec-Anchored / L3-watch), composes templates, writes the project's CLAUDE.md / AGENTS.md / .claude/settings.json / decision docs, and triggers upstream framework installs (Superpowers, Spec-Kit, MUSUBI, OpenSpec). Invoked via /mck-scaffold:init.

2026-05-15
저장소 6개 중 6개 표시
모든 저장소를 표시했습니다