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

TGPSKI

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

수집된 skills
30
저장소
9
업데이트
2026-07-22
여기에는 상위 8개 저장소가 표시되며, 전체 저장소 목록은 아래에서 이어집니다.
저장소 탐색

저장소와 대표 skills

go-release
소프트웨어 개발자

Manage the full Go module release lifecycle: determine next semver version, update CHANGELOG.md, create and push a git tag, and verify pkg.go.dev picks up the new version. Use when the user asks to tag a release, bump the version, update the changelog, or publish a new module version.

2026-04-10
cli-flag-review
소프트웨어 품질 보증 분석가·테스터

Audit and optimize CLI flag definitions across all skeptic subcommands. Reviews help text quality, global-vs-local flag modeling, short flag coverage, shorthand config-precedence safety, help formatter consistency, and test isolation. Use when adding flags, reviewing CLI ergonomics, refactoring subcommand interfaces, or debugging flag override behavior.

2026-04-09
doc-accuracy-audit
소프트웨어 개발자

Audit a document against the codebase for accuracy, then tighten it: verify claims, cut drift, simplify, restructure for the reader. Use when the user says a doc is loose, stale, or wrong, or asks to tighten/audit a README, guide, config reference, or any prose that makes claims about code.

2026-04-09
documentation-lifecycle
소프트웨어 개발자

Generate, update, and maintain per-module documentation under docs/modules/, keep ARCHITECTURE.md and README.md current, and produce Mermaid diagrams for data-flow, block, and dependency views. Use when the user asks to document a package, update architecture docs, generate diagrams, or audit documentation freshness.

2026-04-09
ruleset-lifecycle-operations
소프트웨어 개발자

Add or update rule definitions, create and manage rule groups, and migrate rules across groups in skeptic using the property-based layout. Use when the user asks to add/update rules, add/manage groups, or reorganize `internal/rules`.

2026-04-09
threat-rules-ingestion
정보 보안 분석가

Ingest fresh security research from URLs/files, generate signed scanner rule packs, and validate with policy and behavior scan styles across ecosystems. Use when the user asks to operationalize new threat intel into skeptic detections.

2026-04-09
workflow-action-updates
소프트웨어 개발자

Audit and update GitHub Actions workflow files to use the latest action releases pinned to full commit SHAs. Scans all .github/workflows/*.yml files, resolves current vs latest versions, and applies upgrades. Use when the user asks to update actions, check for outdated workflow dependencies, pin actions to SHAs, or audit CI workflow hygiene.

2026-04-09
release-prep
소프트웨어 개발자

Prepare a leather release: auto-detect next version from git history, insert CHANGELOG section, update docs, commit and push. USE FOR: cutting a new release; bumping version after feature or fix work. DO NOT USE FOR: tagging the release (use release-tag after this skill completes).

2026-07-05
agents-doc-lifecycle
소프트웨어 개발자

Manage AGENTS.md and .subagents/*.md across the leather subagent guide set (currently 17 guides spanning core, runtime, worker, serve, tannery, quality, performance, security, operations, shell-mcp, ui, replay, agent-definition, tools/skills/toolsets semantics, integrations, examples, and observability). USE FOR: auditing every guide against the codebase; adding routing-table rows for new packages or features; splitting an overloaded guide; merging thin guides; updating flag/type/subcommand tables; validating cross-references and ownership uniqueness; enforcing the per-guide `last reviewed` footer; running the full ownership/footer/cross-ref health check. DO NOT USE FOR: writing implementation code; debugging runtime errors; running tests.

2026-07-05
documentation-lifecycle
소프트웨어 개발자

Generate, update, and maintain per-module documentation under docs/modules/, keep docs/ARCHITECTURE.md and README.md current, and produce Mermaid diagrams for data-flow, block, and dependency views. USE FOR: documenting a package; updating architecture docs after structural changes; generating diagrams; auditing documentation freshness; first-time doc generation for the project. DO NOT USE FOR: writing implementation code; debugging runtime errors; updating AGENTS.md or .subagents/ guides (use agents-doc-lifecycle instead).

2026-07-05
release-tag
소프트웨어 개발자

Tag a prepared leather release and push the tag to origin. Triggers the automated release pipeline. USE FOR: after release-prep has committed and pushed. DO NOT USE FOR: preparing the CHANGELOG or docs (use release-prep first); creating GitHub releases directly (the pipeline handles that).

2026-06-05
code-quality-lifecycle
소프트웨어 품질 보증 분석가·테스터

Audit and improve test coverage, formatting, linting, and test organization for the leather codebase. USE FOR: finding untested exported functions; identifying test files that should be split; checking and fixing gofmt/golangci-lint issues; producing a coverage gap report; catching benchmark regressions; full quality gate pre-PR. DO NOT USE FOR: writing business logic; documentation (use documentation-lifecycle); agents doc sync (use agents-doc-lifecycle).

2026-06-01
abductive-triage
소프트웨어 개발자

Structured diagnostic reasoning for AI agents investigating incidents, failures, and unexpected behavior. Teaches agents to resolve coordinate mismatches first (majority of incidents), then build timelines, generate competing hypotheses, identify discriminating evidence, and produce portable investigation artifacts. Use when asked to create a triage workflow, investigate an incident, debug a failure, or encode a diagnostic process.

2026-06-11
hidden-pipeline-race-investigate
소프트웨어 품질 보증 분석가·테스터

Investigate a system that appears to work but silently fails under specific conditions. Demonstrates Tier 2 investigation with the 'no hypotheses survive' recovery pattern and hidden mechanism discovery.

2026-06-11
supply-chain-ioc-investigate
정보 보안 분석가

Investigate potential supply chain compromise indicators. Demonstrates Tier 2 investigation with multi-finding triage, timeline construction across systems, and evidence hierarchy in practice.

2026-06-11
vault-path-confusion-investigate
네트워크·컴퓨터 시스템 관리자

Investigate reported secret mismatches between a cluster and a secret store. Demonstrates Tier 1 resolution — coordinate mismatch identified and resolved without deep analysis.

2026-06-11
your-investigation-name
네트워크·컴퓨터 시스템 관리자

Multi-phase investigation for {problem class}. Routes to the appropriate phase based on artifact state. Phase 1 resolves coordinate mismatches (majority of incidents). Phase 2 investigates systemic issues. Phase 3 remediates and documents.

2026-06-11
fips-crypto-audit
정보 보안 분석가

Runs a FIPS 140-3 crypto compliance audit across Go repositories, classifying every crypto/ import by risk and generating per-component reports. Separates first-party code from vendored dependencies and flags non-cryptographic uses of crypto primitives that break under GODEBUG=fips140=only. Use when auditing Go services for FIPS compliance, assessing new repos before adding them to FIPS CI, re-running an audit after vendor bumps, or generating evidence for compliance documentation.

2026-07-22
fips-finding-triage
정보 보안 분석가

Classifies an individual FIPS crypto audit finding as real cryptography or a non-cryptographic use of a crypto primitive, using structured diagnostic reasoning. Follows the abductive triage methodology of resolving coordinate mismatches first, since most findings are non-crypto, then tracing data flow and protocol requirements only when a usage is genuinely ambiguous. Use when an audit surfaces a CRITICAL or WARNING finding that needs classification, when a vendored dependency's crypto usage may not ship in the binary, or when producing evidence for a compliance review.

2026-07-22
fips-remediation-plan
정보 보안 분석가

Generates component-specific FIPS remediation TODO lists from crypto audit results, with effort estimates and suggested PR sequencing. A directed workflow following the Inspect-Decide-Generate pattern, splitting findings into must-fix, primitive swaps, no-change-needed, and upstream dependencies. Use after a FIPS crypto audit when a component team asks what they need to fix, when planning sprint work for a FIPS migration, or when writing remediation PR descriptions.

2026-07-22
저장소 9개 중 9개 표시
모든 저장소를 표시했습니다