Skip to main content
Ejecuta cualquier Skill en Manus
con un clic
Repositorio de GitHub

ClaudeCodePortable

ClaudeCodePortable contiene 15 skills recopiladas de Hawkynt, con cobertura ocupacional por repositorio y páginas de detalle dentro del sitio.

skills recopiladas
15
Stars
2
actualizado
2026-07-10
Forks
0
Cobertura ocupacional
4 categorías ocupacionales · 100% clasificado
explorador de repositorios

Skills en este repositorio

adversarial-verify
Desarrolladores de software

Use after completing any substantive piece of work (code change, analysis, document, configuration, answer to a hard question) and BEFORE presenting it as done. Switches you from author to attacker - you try to refute your own work and only present it if it survives. Do not skip because the work "looks clean"; plausible-but-wrong is the exact failure this kills.

2026-07-10
codebase-index
Desarrolladores de software

Use when starting work in a LARGE or UNFAMILIAR codebase, when a repo already contains an INDEX.md, or when repeatedly grepping for where something is defined. Generates and consults INDEX.md - a symbol locator (namespaces, types, enums, constructors, functions, methods with parameters, globals/statics, one-line descriptions, all anchored to file:line) built by scripts/index_codebase.py - so lookups become one grep instead of N searches. Once a repo has an index, regenerate it whenever symbols are added, renamed, moved, or deleted. Do not use on small projects a single Glob already covers, and do not treat it as a reason to index every repo you touch.

2026-07-10
done-means-done
Desarrolladores de software

Use immediately before declaring any task complete, closing any request, or presenting work as finished. Forces a completion audit against the ORIGINAL request - every explicit requirement ticked off as done-and-verified, everything skipped named plainly. Do NOT confuse it with correctness review (that is adversarial-verify's job): this catches what you DIDN'T do, not what you did wrong.

2026-07-10
effort-scaling
Desarrolladores de software

Use at the start of any task and whenever choosing how many probes, searches, or tool calls to spend - answering a question, investigating code, researching, debugging. Matches depth to task size: trivial asks get trivial effort, deep tasks get a plan and sustained effort, independent lookups run in parallel. Do NOT use it to justify skipping verification the task actually needs - cheap is not the goal, calibrated is.

2026-07-10
finish-the-task
Desarrolladores de software

Use during any multi-step task when you feel the pull to stop and ask "should I continue?", "want me to also do X?", or to hand back partial work. Forces completion of what was asked - ambiguities get a stated assumption and forward motion, not a stall. Do NOT use it to bulldoze past genuine forks the user must own, destructive actions, or a discovered scope change - those are the three legitimate stops.

2026-07-10
jina-reader
Desarrolladores de software

Fetch a webpage as clean, structured Markdown via the jina.ai reader (r.jina.ai) instead of raw HTML — use whenever you need to read web content and want to save tokens, or when a normal fetch is blocked (HTTP 403/401), returns messy/boilerplate HTML, or the page is JavaScript-rendered (SPA, docs sites, wikis like grokipedia/notion/medium). Triggers: "fetch this page", "read this URL", "summarize this article/webpage", "get the docs at <url>", or any WebFetch that returned 403/garbled HTML.

2026-07-10
live-state-truth
Desarrolladores de software

Use whenever you are about to assert or act on a fact about a system - what a function does, what a config is set to, what is deployed, what a table contains, what a dependency's version is. Forces verification against the LIVE system before the assertion. Docs, comments, READMEs, and your own memory are treated as stale by default.

2026-07-10
memory-hygiene
Desarrolladores de software

Use when writing to or reading from any persistent memory an agent keeps across sessions - CLAUDE.md, memory files, notes, project docs meant for future sessions. Governs WHAT deserves persisting, HOW to write it so it survives time, and the recall rule: verify remembered facts against live state before acting on them. Use it also when a session starts by loading old memory.

2026-07-10
plan-gate
Desarrolladores de software

Use before starting ANY task that involves more than one edit, file, or step - coding, refactoring, writing, configuration, migrations. Forces a short written plan (goal, unknowns, success criteria, step order) BEFORE the first change. Do not use for single-line fixes or pure questions.

2026-07-10
prose-first
Redactores técnicos

Use when composing conversational answers, explanations, documentation, reports, or summaries - the places where formatting tends to metastasize. Enforces the minimum-formatting rule - prose by default, bullets/headers/bold only when the content genuinely demands them - plus the one-question rule and the no-padding rules. Do NOT apply to inherently structured output - code, JSON, tables, checklists the user asked for, finding-led reviews (code review, audits, incident reports) where itemization and severity order ARE the content, or any format the user explicitly requested.

2026-07-10
root-cause-first
Analistas de garantía de calidad de software y probadores

Use whenever something is broken and you are about to fix it - a failing test, a bug report, a crash, wrong output, flaky behavior. Forces reproduce -> isolate -> fix the cause -> re-run the repro, and bans fixes without a failing observation. Do NOT use for building new features or for changes where nothing is broken - it governs repair, not construction.

2026-07-10
ruthless-editor
Redactores técnicos

Use whenever you produce prose a human will read - documentation, READMEs, reports, summaries, commit messages, emails, blog drafts, PR descriptions. Runs a cutting pass where every sentence must earn its place. Target: 30 percent shorter with zero information loss. Do not use on code or on text the user asked you to preserve verbatim.

2026-07-10
scope-fence
Desarrolladores de software

Use on every task where you will modify existing work - code, documents, configs. Fences your changes to exactly what was asked. Adjacent problems get FLAGGED, never silently fixed. Keeps diffs minimal and reviewable. Do not use it to refuse legitimate follow-through the task actually requires.

2026-07-10
search-discipline
Analistas de investigación de mercados y especialistas en marketing

Use whenever deciding whether to search the WEB and how to construct the queries - answering factual questions, evaluating products/versions/APIs, encountering unfamiliar names or terms. Encodes the rate-of-change rule, the unrecognized-entity rule, effort scaling, query construction, and source-trust calibration. Do not use for pure reasoning tasks with no factual dependency, nor for lookups inside a local repo or docs tree - those are grep/read questions, not search questions.

2026-07-10
structured-memory
Desarrolladores de software

Use whenever persistent agent memory is read, written, or has grown past its budget - the first time memory is consulted in a session, whenever something worth remembering appears, and whenever MEMORY.md or a topic file exceeds its size budget. Implements a two-tier structure (slim MEMORY.md index linking memory-*.md topic files) with self-compaction rules so memory never overflows the context window yet never silently loses important information.

2026-07-10