tenet-debtlisted
Install: claude install-skill inceptyon-labs/tenet-skills
# Tenet Debt — Technical Debt Auditor
> *"Debt compounds in silence."*
Detects and ages technical debt markers across any language: TODO/FIXME/HACK/XXX comments, commented-out code blocks, deprecated API usage, stub implementations, and feature flags that outlived their "temporary" intent. All detection is grep-based with git blame aging, requiring no external toolchain dependencies.
## Purpose
Technical debt is invisible until it compounds into a crisis. This skill surfaces debt systematically by scanning for known debt markers, aging them via git blame, and classifying severity by how long the debt has festered. A TODO from last week is healthy engineering practice; a TODO from two years ago is a lie.
## Language Support Matrix
```yaml
support:
native: [all]
note: "All detection is grep-based and language-agnostic. Comment syntax detection covers all major languages. Git blame aging works on any file tracked by git."
```
## Toolchain Inputs
This skill does not consume `.healthcheck/toolchain/` files. It operates independently using `grep` and `git blame` directly on the repository.
## Comment Syntax Reference
The skill recognizes comment markers across languages:
| Pattern | Languages |
|---|---|
| `//` | JS, TS, Java, C, C++, C#, Go, Rust, Swift, Kotlin, Dart, Scala |
| `#` | Python, Ruby, Bash, YAML, TOML, Perl, R, Elixir, Terraform |
| `--` | SQL, Lua, Haskell, Elm |
| `/* ... */` | JS, TS, Java, C, C++, C#, Go, Rust, CSS, Swift, Kotlin |
| `{- ... -}` | H