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

github

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

수집된 skills
463
저장소
15
업데이트
2026-07-12
저장소 지도

skills가 있는 위치

수집된 skill 수가 많은 주요 저장소와 이 제작자 카탈로그 내 비중, 직업 분포를 보여줍니다.

#01
awesome-copilot
skills 386개 · 2026-07-10
소프트웨어 개발자기타 컴퓨터 관련 직업네트워크·컴퓨터 시스템 관리자소프트웨어 품질 보증 분석가·테스터프로젝트 관리 전문가정보 보안 분석가
직업 카테고리 24개 · 100% 분류됨
83%비중
#02
gh-aw
skills 40개 · 2026-07-11
소프트웨어 개발자소프트웨어 품질 보증 분석가·테스터기타 컴퓨터 관련 직업
직업 카테고리 3개 · 100% 분류됨
8.6%비중
#03
actions-migrations-via-copilot
skills 11개 · 2026-05-26
소프트웨어 개발자소프트웨어 품질 보증 분석가·테스터
직업 카테고리 2개 · 100% 분류됨
2.4%비중
#04
gh-aw-firewall
skills 7개 · 2026-07-12
네트워크·컴퓨터 시스템 관리자소프트웨어 개발자정보 보안 분석가
직업 카테고리 3개 · 100% 분류됨
1.5%비중
#05
copilot-cli-for-beginners
skills 4개 · 2026-02-19
소프트웨어 품질 보증 분석가·테스터기타 컴퓨터 관련 직업소프트웨어 개발자
직업 카테고리 3개 · 100% 분류됨
0.9%비중
#06
copilot-sdk
skills 3개 · 2026-06-18
소프트웨어 개발자소프트웨어 품질 보증 분석가·테스터
직업 카테고리 2개 · 100% 분류됨
0.6%비중
#07
github-well-architected
skills 2개 · 2026-06-24
소프트웨어 개발자편집자
직업 카테고리 2개 · 100% 분류됨
0.4%비중
#08
copilot-advanced-security-plugin
skills 2개 · 2026-05-07
정보 보안 분석가
직업 카테고리 1개 · 100% 분류됨
0.4%비중
여기에는 상위 8개 저장소가 표시되며, 전체 저장소 목록은 아래에서 이어집니다.
저장소 탐색

저장소와 대표 skills

doc-and-modernize
소프트웨어 개발자

Two related workflows for a locally-cloned codebase, in one skill. Documentation mode produces a single, comprehensive, verifiable architecture document primarily by reading files on disk (local-first) — use it whenever the user wants to understand, map, document, research, or onboard onto a codebase ("research this repo", "write up the architecture", "do an architecture deep dive", "document how this codebase works", "map the system design", "create an onboarding doc"). Modernization mode generates a phased plan to modernize, migrate, upgrade, or rewrite a legacy system ("modernize this", "plan the migration", "how would we rewrite this", "how do we get off this legacy stack"); if no architecture document exists yet it first runs Documentation mode, then continues straight through to the plan. It assumes the legacy stack may be dead, runs a time-boxed feasibility spike, and picks the highest achievable rung on a safety ladder instead of demanding a fully-green legacy CI gate up front.

2026-07-10
mcp-implementation-security-review
정보 보안 분석가

Review the implementation source code of MCP (Model Context Protocol) servers, clients, and tool handlers against a security baseline — authentication, sessions, rate limiting, input-schema validation, official-SDK usage, RCE vectors, and the OWASP MCP Top 10 — producing a report with file/line evidence. Use this skill when: - Reviewing an MCP server implementation for security before release - Checking a server against the baseline controls (MCP-01 to MCP-05) and the OWASP MCP Top 10 - Auditing tools for RCE vectors (command/code injection, unsafe deserialization, path traversal, SSTI, dependency hijacking, SSRF) - Verifying auth, session, rate-limiting, and input-validation controls on a network-exposed server - Reviewing MCP client code that handles untrusted server responses and session IDs - Requests like "review this MCP server for security" or "is my MCP server implementation secure?"

2026-07-09
foundry-hosted-agent-copilotkit
소프트웨어 개발자

Ongoing development guidance for agentic web apps that pair a CopilotKit frontend with Microsoft Agent Framework agents on Azure AI Foundry hosted agents over the AG-UI protocol - add and gate agent tools, wire human-in-the-loop approvals, build generative UI and shared state, debug the event stream, upgrade pre-1.0 packages safely, and deploy hosted agent updates.

2026-07-09
pester-should-migration
소프트웨어 품질 보증 분석가·테스터

Experimental (preview) Pester skill for migrating classic Should -Be (v5) assertion syntax to the new Should-* (v6) assertions (note the hyphen, no space), e.g. `Should -Be` -> `Should-Be`, `Should -Not -Be` -> `Should-NotBe`. Tracks Pester 6, which is still a release candidate, so this guidance may change; verified against Pester 6.0.0-rc2. Use when converting Pester v5 assertions to Pester v6 Should-* operators, modernizing a Pester test suite, or when a user asks to migrate, convert, or rewrite `Should -...` calls in .Tests.ps1 / PowerShell files.

2026-07-08
agentic-workflows
기타 컴퓨터 관련 직업

Route gh-aw workflow design/create/debug/upgrade requests to the right prompts.

2026-07-03
pester-migration
소프트웨어 품질 보증 분석가·테스터

Experimental (preview) Pester migration skill for upgrading PowerShell Pester test suites across major versions — v3→v4, v4→v5, and v5→v6. The v5→v6 path tracks Pester 6, which is still a release candidate, so that guidance may change. Covers the Discovery/Run two-phase model, moving setup into BeforeAll, $PSScriptRoot vs $MyInvocation, mock changes (Assert-MockCalled → Should -Invoke, removed fall-through), Invoke-Pester parameters → PesterConfiguration, data-driven -ForEach/-TestCases, and the v6 breaking changes. Use when the user asks to upgrade, migrate, or modernize Pester tests, fix *.Tests.ps1 files that broke after bumping the Pester version, or convert legacy Should / Invoke-Pester syntax.

2026-07-02
copilot-pr-autopilot
소프트웨어 품질 보증 분석가·테스터

Copilot left 14 review comments on your PR — half are nits. Hours of fix → reply → resolve → re-request, and each round lands MORE comments. This skill runs loop engineering: auto-triggers Copilot Code Review via GraphQL (no @copilot mention), triages every open thread (Copilot, humans, advanced-security) with a fix / decline / escalate rubric, dispatches parallel fix sub-agents that obey the repo build/test/lint conventions, commits per iteration, replies+resolves citing the pushed SHA, then re-triggers until HEAD is reviewed with zero threads awaiting the agent's reply (remaining open threads are explicit hand-offs to the human — escalated declines, design tradeoffs). You merge a clean PR; the bot runs it. Trigger phrases: "address copilot comments", "run a copilot review loop", "fix this PR", "iterate on copilot feedback". Repo-agnostic, gh CLI + PowerShell. Full autopilot needs repo Triage/Write; external PR authors get single-iteration mode plus manual re-trigger (UI 🔄 or substantive-commit push).

2026-07-01
create-implementation-plan
소프트웨어 개발자

Create a new implementation plan file for new features, refactoring existing code or upgrading packages, design, architecture or infrastructure.

2026-06-30
이 저장소에서 수집된 skills 386개 중 상위 8개를 표시합니다.
이 저장소에서 수집된 skills 40개 중 상위 8개를 표시합니다.
actionlint
소프트웨어 품질 보증 분석가·테스터

Install, run, and fix errors from actionlint — the GitHub Actions workflow linter. Load when validating `.github/workflows/*.yml` files after migration or generation.

2026-05-26
azure-devops-migration
소프트웨어 개발자

Azure DevOps migration to GitHub Actions — syntax mappings and the migration report template for YAML pipelines, templates, variable groups, service connections, deployment jobs, stages, conditional logic. Load with `migration-core` when migrating Azure DevOps sources to GitHub Actions.

2026-05-26
bamboo-migration
소프트웨어 개발자

Bamboo migration to GitHub Actions — syntax mappings and the migration report template for Build plans, deployment projects, tasks, requirements, variables, plan branches. Load with `migration-core` when migrating Bamboo sources to GitHub Actions.

2026-05-26
bitbucket-migration
소프트웨어 개발자

Bitbucket Pipelines migration to GitHub Actions — syntax mappings and the migration report template for Pipelines, Pipes, parallel steps, branch/pull-request workflows, deployments, variables. Load with `migration-core` when migrating Bitbucket Pipelines sources to GitHub Actions.

2026-05-26
circleci-migration
소프트웨어 개발자

CircleCI migration to GitHub Actions — syntax mappings and the migration report template for Workflows, jobs, Orbs, executors, contexts, parameters, matrix jobs, approval gates. Load with `migration-core` when migrating CircleCI sources to GitHub Actions.

2026-05-26
droneci-migration
소프트웨어 개발자

Drone CI migration to GitHub Actions — syntax mappings and the migration report template for Pipelines, plugins, services, secrets, triggers, multi-platform pipelines. Load with `migration-core` when migrating Drone CI sources to GitHub Actions.

2026-05-26
gitlab-migration
소프트웨어 개발자

GitLab CI migration to GitHub Actions — syntax mappings and the migration report template for Pipelines, includes, Pages, environments, rules/only/except, parallel jobs, GitLab-specific variables. Load with `migration-core` when migrating GitLab CI sources to GitHub Actions.

2026-05-26
jenkins-migration
소프트웨어 개발자

Jenkins migration to GitHub Actions — syntax mappings and the migration report template for Pipelines (declarative + scripted), shared libraries, Groovy scripts, credential bindings, agent labels, parallel stages, plugin replacements. Load with `migration-core` when migrating Jenkins sources to GitHub Actions.

2026-05-26
이 저장소에서 수집된 skills 11개 중 상위 8개를 표시합니다.
저장소 15개 중 12개 표시