Install
$ agentstack add skill-deadlymind-nanolama-commit-message ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Commit message (Conventional Commits)
When to use
Turning a staged diff into one well-formed commit message. Read the staged changes first — the type and scope are derived from what the diff does, not from what you meant to do.
Pattern
Subject line, a blank line, a body explaining WHY, then footers. The subject is type(scope): description in the imperative, lowercase start, no trailing period, kept short (the git convention is ~50 chars for the subject, wrap the body near 72). The body explains the problem, not the mechanics the diff already shows. A breaking API change on a tenant-scoped endpoint, for example:
feat(invoices)!: scope list endpoint to the caller's entreprise
The list view returned every tenant's invoices. Filter by the
authenticated user's entreprise so cross-tenant rows never leak.
BREAKING CHANGE: /api/invoices/ now returns only the current
tenant's rows; clients relying on the global list must paginate
per entreprise.
Refs: #482
- type — derive from the diff's dominant effect:
feat (new capability), fix (bug), refactor (behavior-preserving), perf, docs, test, build (deps/bundler), ci (pipeline), chore (rest).
- scope — the touched area (module, app, or package), e.g.
invoices,auth. - subject — imperative mood ("add", not "added"/"adds"), lowercase start, no period.
- body — optional but expected for non-trivial changes; explains the why.
- footer —
BREAKING CHANGE:(a!after the type/scope also flags it) and
issue refs (Refs: #123, Closes #123).
Adapt to your repo
Inspect the staged diff, not the working tree — run git diff --cached --stat to see the area (scope) and git diff --cached to see what actually changed (type + why). Pick the single dominant type: if a diff both adds a feature and reformats, the feature wins — split unrelated changes into separate commits. Rename the example scope (invoices, entreprise) to your own modules and tenant term. If your repo uses a different taxonomy — a fixed scope list, or gitmoji (:sparkles: = feat, :bug: = fix) — follow that instead of these types, and match existing git log history. Confirm the subject-line length your linter enforces (commitlint's default header-max-length is 100).
Gotchas
- The type describes the diff's effect, not your intent — a "quick fix" that adds
a new endpoint is feat, not fix.
- Subject is imperative and unpunctuated; the body is where prose lives.
BREAKING CHANGE:must be spelled exactly (uppercase, in the footer) for tools
to detect it — a bare ! in the header is a hint, the footer is authoritative.
- Don't restate the diff line by line in the body; Git already shows what. Say why.
See also
changelogcode-review
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Deadlymind
- Source: Deadlymind/nanolama
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.