소스 정보
- 저장소
- JPeetz/agent-skills
- 최근 소스 활동
- 2026년 8월 31일 06:31
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/JPeetz/agent-skills --skill finding-unknowns명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Design-first API development skill. Generates OpenAPI 3.1 specifications, enforces REST design best practices, validates endpoints, handles versioning, pagination, error formatting, authentication patterns, rate limiting, and idempotency. Activates when users say "design an API", "create OpenAPI spec", "API endpoint", "REST API design", "API contract", "Swagger/OpenAPI doc", "API versioning", "rate limiting", or "API security". Covers REST, GraphQL schema design, and gRPC proto generation with cross-protocol consistency.
AI-powered GraphQL API design, implementation, and optimization. Covers schema-first design, resolver architecture, query optimization with DataLoader for N+1 prevention, mutation patterns with idempotency, real-time subscriptions, Apollo Federation for distributed graphs, security hardening (depth limiting, rate limiting, authz), and production performance (persisted queries, caching, CDN integration). Primary keyword clusters: GraphQL schema design best practices, Apollo Federation subgraph patterns, DataLoader N+1 query optimization, GraphQL security depth limiting rate limiting, GraphQL persisted queries performance, GraphQL subscription real-time patterns, GraphQL error handling union types, GraphQL pagination relay cursor connection, GraphQL caching strategies production, GraphQL resolver architecture patterns. Designed for agentic platforms — Claude Code, Codex, Cursor, Gemini CLI, OpenClaw, GitHub Copilot, Windsurf, and OpenCode.
Use this skill when an agent needs to call a website's hidden or undocumented API: capture real browser requests into a HAR file, derive the exact request shape, build a clean replayable client, verify it outside the browser, and reuse the verified client. Activates when a backend has no documented API, or when you must reproduce the precise request (method, URL, headers, JSON body) of an action you can only perform in a browser. Authorized use only — never to bypass auth or bot detection.
SKILL.md 표시 중
| name | finding-unknowns |
| description | Use when entering unfamiliar code or domain territory. |
| version | 1.0.0 |
| license | MIT |
| author | Neeeophytee (original author, based on Thariq Shihipar essays), Skill Foundry (packaged edition) |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["meta-cognitive","blindspot","unknown-unknowns","context-audit","agent-skills"],"related_skills":["skill-miner","code-review"]}} |
A collection of 11 meta-cognitive skills that make coding agents surface unknown unknowns before they get expensive. These skills teach agents to discover what they don't know, audit their own context, design better interfaces, and structure implementation for maximum reviewability.
Based on Thariq Shihipar's "finding your unknowns" techniques. Originally published by Neeeophytee at https://github.com/Neeeophytee/finding-unknowns-skills.
| Skill | Description |
|---|---|
| blindspot-pass | Surface unknown unknowns before work starts — landmines, hidden context, quality calibration |
| interview-me | One-question-at-a-time targeted interview to resolve remaining ambiguity |
| reference-hunt | Extract semantics from existing code as specification, then reimplement |
| implementation-plan | Write plans ordered by likelihood of tweaking, not build order |
| implementation-notes | Log deviations from plan and discovered edge cases during a build |
| pitch-packager | Package work into a single review-ready document that gets fast approvals |
| change-quiz | Produce a diff report + 5-8 question quiz the user must pass before merge |
| brainstorm-prototypes | Generate wildly different throwaway variations for user reaction |
| context-audit | Audit CLAUDE.md, AGENTS.md, skills for contradictions, bloat, and overlap |
| agent-interface-design | Design MCP servers, tool definitions, and CLIs that teach their own use |
| progressive-disclosure | Split oversized skills/specs into entry + on-demand files |
This suite can be installed as external skills. Add to your ~/.hermes/config.yaml:
skills:
external_dirs:
- /path/to/finding-unknowns/skills
Then run hermes skills list to verify all 11 skills are enabled.
See INSTALL-HERMES.md in the original repository at https://github.com/Neeeophytee/finding-unknowns-skills for alternative installation methods.
Each sub-skill is in skills/<name>/SKILL.md. Refer to the individual skill file for full procedure.
progressive-disclosure uses disable-model-invocation: true in original source (invoked only by user, not auto-activated). In Hermes, it behaves as model-invoked. Keep this in mind for context cost accounting.hermes skills list and verify all 11 skill names appear as "enabled".blindspot-pass triggers.change-quiz produces a comprehensive report.