Use when: review an academic paper with a structured review form and multiple reviewer personas.
kimtth/agent-skill-100-lines-or-less
SkillsMP has collected 99 skills from kimtth/agent-skill-100-lines-or-less. Open a skill to review its source and details.
- Latest recorded source activity
- SkillsMP catalog refreshed
- skills collected
- 99
- GitHub stars
- 2
- GitHub forks
- 0
Skills in this repository
Showing 40 of 99 collected skills.
Use when: design a clear, consistent, and evolvable API contract before implementing it.
Use when: record a significant technical decision, its context, and consequences as an ADR.
Use when: implement or review authentication flows, sessions, tokens, and password handling securely.
Use when: design or review access control so users can only do what they are permitted to do.
Use when: write or review robust shell scripts that fail fast and handle paths and input safely.
Use when: explore options or decompose an ambiguous problem before committing to one approach.
Use when: add caching with the right layer, key design, invalidation, and consistency trade-offs.
Use when: design or improve a CI/CD pipeline for fast, reliable, automated build-test-deploy.
Use when: structure an app so business logic is independent of frameworks, UI, and databases.
Use when: write or review concurrent code that avoids races, deadlocks, and shared-state bugs.
Use when: write or review modern C++ with RAII, smart pointers, and value semantics.
Use when: give structured, specific design critique with actionable fixes, not vague feedback.
Use when: write or review modern, idiomatic C# with async, nullable reference types, and clean structure.
Use when: write and apply schema migrations safely without downtime or data loss.
Use when: decouple components by injecting their dependencies instead of constructing them inline.
Use when: apply a design pattern to a real problem without over-engineering the solution.
Use when: define multi-service local and test environments with Docker Compose reliably.
Use when: model a complex domain with a shared language, bounded contexts, and clear aggregates.
Use when: define type-safe schemas, migrations, and queries with Drizzle ORM and full TS inference.
Use when: run analytical queries in-process over files, Parquet, or CSV with DuckDB.
Use when: design error handling so failures are explicit, recoverable, and never silently swallowed.
Use when: design systems around events and messages with reliable, decoupled processing.
Use when: extract tokens, components, and patterns from an existing codebase into a documented system.
Use when: build or reshape UI with distinctive, intentional visual design instead of generic defaults.
Use when: find the commit that introduced a bug with a binary search over history.
Use when: clean up or reorder commits with rebase while keeping history safe and reviewable.
Use when: write or review GitHub Actions workflows that are fast, secure, and maintainable.
Use when: write or review idiomatic Go with explicit errors, clear concurrency, and small interfaces.
Use when: design or review GraphQL schemas and resolvers with safe, efficient data access.
Use when: pressure-test your own reasoning or a plan before committing to it.
Use when: verify claims or API usage against fetched official documentation, not memory.
Use when: write a handoff so another session or agent can resume work without context loss.
Use when: propose structural improvements to a codebase without rewriting it wholesale.
Use when: validate and sanitize untrusted input at boundaries to prevent bad data and attacks.
Use when: write or review modern, idiomatic Java with immutability, clear types, and clean structure.
Use when: write or review idiomatic Kotlin with null safety, immutability, and concise expressions.
Use when: measure system behavior under load to find limits, bottlenecks, and regressions.
Use when: resolve git merge or rebase conflicts correctly without losing intended changes.
Use when: use test doubles correctly — mock true boundaries, not the code under test.