AbsolutelySkilled

by AbsolutelySkilledVerified

Awesome Skills from Around the World

156
Stars
26
Forks
MDX
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/AbsolutelySkilled/AbsolutelySkilled

Getting Started

Guides for using skills like AbsolutelySkilled.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Absolute

A development workflow engine for AI coding agents. Eleven separate skills — a one-time absolute-init (interview + stack detection → config), a build loop you run every day (think → spec → plan → build → polish → document), plus an engineering-health family that keeps the codebase maintained (deps, security, dead code, lint/type debt, flaky tests).

Quick start: install each skill via npx skills add maddhruv/absolute-<name>, then invoke it directly in your AI coding tool.

/absolute-init                                              # interview + detect stack → write config the commands read
/absolute-work "Add OAuth2 login with Google and GitHub"   # plan it, build it, verify it
/absolute-spec "Design a commenting system"                 # write a reviewed design doc, don't build yet
/absolute-ui "Design a pricing page"                        # make it look intentional, not generated
/absolute-simplify                                          # clean the diff before you commit
/absolute-docs "Write a getting-started tutorial"           # document what you shipped
/absolute-upgrade                                           # bring dependencies up to date, safely
/absolute-audit                                             # scan deps + code for vulnerabilities
/absolute-deflake                                           # fix the tests that fail randomly

Why Absolute?

Most coding agents are great at the middle of a task and bad at the edges. They start writing code before the design is settled, ship UIs that scream "an AI made this," leave the diff messier than it needed to be, and write docs that drift from the code. You end up babysitting.

Absolute replaces that with eleven opinionated skills that cover the loop end to end:

  • It refuses to guess. absolute-work interviews you to a shared design one question at a time, writes a reviewed spec, and decomposes the work into a dependency-graphed task board — before any code. Want just the design? absolute-spec writes a reviewed design doc and stops.
  • It builds safely. Tasks run one wave at a time, test-first, with an independent evaluator grading each one. Blockers serialize; only provably-independent work parallelizes.
  • It has taste. absolute-ui encodes concrete CSS/Tailwind values — spacing scales, color ratios, type scales, motion rules — not vague advice like "make it clean."
  • It cleans up after itself. absolute-simplify reduces complexity in your actual git changes and runs your tests to prove nothing broke.
  • It tells the truth. absolute-docs writes Diátaxis-correct documentation and verifies every snippet, flag, and default against your real code.
  • It keeps the codebase healthy. Five maintenance skills run on green mainabsolute-upgrade (dependency bumps), absolute-audit (security/CVE scan), absolute-prune (dead code & deps), absolute-debt (lint/type debt), absolute-deflake (flaky tests) — each a risk-ranked, gated, safe-wave scan-and-fix that never cheats the checker.
  • You stay in control. Hard gates between phases, bounded scope, and never auto-commits — every skill writes files and reports; you commit.

What's Included

Eleven skills, each installable independently. Works with any agent that supports the SKILL.md format: Claude Code, Gemini CLI, OpenAI Codex, Cursor, and 40+ more agents.

Setup — run once per repo:

SkillPhaseWhat it does
/absolute-initSetupInterview how you want absolute to behave (output style, autonomy/gating, TDD strictness, spec dir, families) + detect the stack once, then write .absolute.config.json (project, committed) and optionally ~/.absolute/config.json (user defaults + per-project overrides). Every other skill reads it instead of re-detecting; non-destructive, never commits.

Build loop — the everyday flow:

SkillPhaseWhat it does
/absolute-workThink · Plan · BuildEnd-to-end, phase-gated SDLC — brainstorm → spec → task board → safe-wave TDD execution → verify → converge. Handles features, bugs, refactors, greenfield, planning breakdowns, and migrations.
/absolute-specPlanLightweight standalone design spec — codebase scan → bounded clarify pass → reviewed spec to docs/plans/ → independent scored review → stop. For a doc to discuss or hand off, not build now.
/absolute-uiDesignBuild polished, modern UIs with concrete values — spacing, color, typography, layout, dark mode, accessibility, animations, components.
/absolute-simplifyPolishAutonomously simplify your working git changes — reduce complexity, flatten nesting, remove redundancy and dead code, keep tests green.
/absolute-docsDocumentDiátaxis-driven docs — tutorials, how-tos, reference, explanation, plus READMEs, CONTRIBUTING, ADRs. Detects your docs stack; verifies every claim against the code.

Engineering health — standing maintenance on green main (scan → risk-ranked gate → safe-wave fix → verify → report):

SkillWhat it does
/absolute-upgradeDependency upgrades — outdated/vulnerable deps in semver waves (patch/minor batched, majors gated and changelog-read), lockfiles regenerated, tests green after each.
/absolute-auditVulnerability & security scan (defensive, your own repo) — dependency CVEs plus risky code patterns, severity × reachability triaged and remediated without suppressing. Complements /security-review.
/absolute-pruneDead code & dependency cleanup, repo-wide — unused deps, unreferenced exports, unreachable code, orphaned files, removed only with tool evidence.
/absolute-debtLint & typecheck debt paydown — clear pre-existing violations and suppressions one rule per wave, fixing causes not symptoms.
/absolute-deflakeFlaky test fixes — detect nondeterminism empirically, diagnose the root cause, fix it (never retry/skip/sleep), verify across many randomized runs.

Behind the skills: 11 full command flows + 1 shared health engine + 41 deep-dive guides (typography, color theory, the safe-wave execution algorithm, language-specific simplification catalogs, per-stack docs conventions, and more), loaded only when the task needs them.


Usage

/absolute-init                                                 # one-time: interview + detect stack → config
/absolute-work "Pick up this ticket: migrate the REST API from v2 to v3"
/absolute-work "Grill me on my plan for a real-time chat feature, then build it"
/absolute-spec "Draft a design doc for our rate limiter, don't build it yet"
/absolute-ui "Make this dashboard feel less like AI slop"
/absolute-simplify "clean up my changes in src/api/"
/absolute-docs "Improve this README, it's 800 lines of everything"
/absolute-upgrade "Bring our dependencies up to date"
/absolute-prune "Remove dead code and unused dependencies"
/absolute-deflake "Fix the flaky tests in our CI"

The absolute-work lifecycle

absolute-work stops at a hard gate between every phase, so you stay in control the whole way. State lives in a local .absolute-work/board.md that survives across sessions — resume, audit decisions, or hand off.

INTAKE & BRAINSTORM ─ gate ─ SPEC ─ gate ─ DECOMPOSE & PLAN ─ gate ─ EXECUTE ─ gate ─ VERIFY ─ gate ─ CONVERGE

Installation

Install skills with the skills CLI via npx. Install all eleven at once or pick only what you need:

# Install all eleven skills
npx skills add maddhruv/absolute-init maddhruv/absolute-work maddhruv/absolute-spec \
  maddhruv/absolute-ui maddhruv/absolute-simplify maddhruv/absolute-docs \
  maddhruv/absolute-upgrade maddhruv/absolute-audit maddhruv/absolute-prune \
  maddhruv/absolute-debt maddhruv/absolute-deflake

# Or install individually
npx skills add maddhruv/absolute-work
npx skills add maddhruv/absolute-ui

Then invoke each skill by name (e.g. /absolute-work) and reload your agent if needed.

# Globally, available across all projects
npx skills add maddhruv/absolute-work -g

# To a specific agent
npx skills add maddhruv/absolute-work -a claude-code

# Non-interactive (CI/CD friendly)
npx skills add maddhruv/absolute-work -g -a claude-code -y

Managing installs

npx skills list                      # list installed skills
npx skills check                     # check for updates
npx skills update                    # update everything
npx skills remove absolute-work      # remove a skill
ScopeFlagLocationUse case
Project(default)./<agent>/skills/Committed with your project, shared with the team
Global-g~/<agent>/skills/Available across all projects

Supported agents

The CLI supports 40+ agents including Claude Code, Codex, Cursor, Gemini CLI, GitHub Copilot, Windsurf, Cline, and Roo Code. See the full list in the skills CLI docs.


How it's built

skills/
  absolute-init/              # One-time setup
    SKILL.md                  # Full flow + frontmatter
    README.md
  absolute-work/              # End-to-end SDLC
    SKILL.md
    README.md
    references/               # intake-playbook, spec-writing, execution-model, etc.
  absolute-spec/              SKILL.md, README.md
  absolute-ui/                SKILL.md, README.md, references/ (25 design guides)
  absolute-simplify/          SKILL.md, README.md, references/ (language guides)
  absolute-docs/              SKILL.md, README.md, references/ (doc-type guides)
  absolute-upgrade/           SKILL.md, README.md, references/health-engine.md
  absolute-audit/             SKILL.md, README.md, references/health-engine.md
  absolute-prune/             SKILL.md, README.md, references/health-engine.md
  absolute-debt/              SKILL.md, README.md, references/health-engine.md
  absolute-deflake/           SKILL.md, README.md, references/health-engine.md

Each skill is self-contained. See CONTRIBUTING.md to edit a skill or add a new one.


License

MIT

Frequently Asked Questions

What is AbsolutelySkilled?

AbsolutelySkilled is an open-source documentation skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by AbsolutelySkilled. Awesome Skills from Around the World. It has 156 GitHub stars.

Is AbsolutelySkilled safe to use?

Yes. AbsolutelySkilled passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install AbsolutelySkilled?

Clone the repository with "git clone https://github.com/AbsolutelySkilled/AbsolutelySkilled" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is AbsolutelySkilled written in?

AbsolutelySkilled is primarily written in MDX. It is open-source under AbsolutelySkilled on GitHub, so you can review or fork the full source.

Are there alternatives to AbsolutelySkilled?

Yes. SkillsLLM lists many other Documentation skills you can browse and compare side by side. Open the Documentation category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh AbsolutelySkilled against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details