AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Adr

skill-furedea-agent-harness-adr · by furedea

>

No reviews yet
0 installs
20 views
0.0% view→install

Install

$ agentstack add skill-furedea-agent-harness-adr

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-furedea-agent-harness-adr)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
17d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Adr? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Architecture Decision Records

This skill governs the execution layer for ADRs: deciding whether an ADR is needed, reading the existing decision history, creating or superseding ADR files, and keeping decision prose out of tests and implementation.

Use this together with tsdd when the work involves both executable behavior and architectural rationale. tsdd owns the methodology; this skill owns the mechanics of recording the decision.

Core Rule

When a change introduces or reverses a broad project decision, create or update an ADR under docs/adr/ as part of the same task.

Do not leave ADR creation as an optional follow-up. If the rationale matters for future maintainers or future agents, record it before finishing the work.

When To Load

Load this skill before making or reviewing changes involving:

  • Architecture Decision Records, decision records, ADRs, or docs/adr/.
  • Library, framework, database, protocol, hosting, or tooling selection where real alternatives exist.
  • Architectural patterns such as server-rendered vs SPA, sessions vs tokens, monolith vs services, sync vs async, polling vs events, or generated vs handwritten artifacts.
  • Durable constraints that are not obvious from code, such as "no runtime dependencies", "Nix owns this configuration", or "tests are the only requirements source".
  • Reversing, superseding, deprecating, or intentionally rejecting a previous decision.

Do not load it for a local implementation detail that can be understood from the code in under a minute.

Decision Test

Before writing an ADR, ask:

  1. Would a future maintainer ask "why this approach instead of the obvious alternative?"
  2. Does the Why span multiple files, components, workflows, or future changes?
  3. Were meaningful alternatives considered or rejected?
  4. Would an inline comment either be too narrow or need to be repeated in several places?

If any answer is yes, create an ADR. If all answers are no, prefer code, tests, or a local comment.

Repository Inspection

Before creating or changing ADRs:

  1. Check whether docs/adr/ exists.
  2. Read existing ADR titles and metadata before choosing a new decision.
  3. Search existing ADRs for the topic, chosen option, and rejected alternatives.
  4. If an existing ADR already covers the decision, update code/tests to follow it instead of writing a duplicate.
  5. If the new decision reverses or materially changes an old one, write a new ADR and mark the old one as superseded.

Use rg --files docs/adr and targeted rg searches when available.

File Layout

Store ADRs here:

docs/
└── adr/
    ├── 0001-record-architecture-decisions.md
    ├── 0002-.md
    └── 0003-.md

Rules:

  • Use one decision per file.
  • Use sequential four-digit IDs.
  • Never reuse an ID.
  • Never delete old ADRs to hide history.
  • Use kebab-case for the filename decision slug.
  • Create docs/adr/ if it does not exist.
  • If the repository has no ADRs yet and the task adopts ADRs as a practice, create 0001-record-architecture-decisions.md first.

Status Rules

Allowed status values:

  • Proposed
  • Accepted
  • Superseded
  • Deprecated

Default to Accepted when the decision is implemented in the same change. Use Proposed only when the user asked for a proposal or no implementation change is being made.

Past ADRs are immutable except for metadata status changes. Do not rewrite the body of an accepted ADR to make it match a new decision.

When reversing a decision:

  1. Create a new ADR with the next sequential ID.
  2. Add - Supersedes: ADR-NNNN to the new ADR metadata.
  3. Change the old ADR status to Superseded.
  4. Keep both ADRs in the same commit or change set.

Preferred Template

Use the Y-Statement form by default:

# ADR-NNNN: 

- Status: Accepted
- Date: YYYY-MM-DD

In the context of , facing , we decided for  and against , to achieve , accepting .

For superseding ADRs:

# ADR-NNNN: 

- Status: Accepted
- Date: YYYY-MM-DD
- Supersedes: ADR-0003

In the context of , facing , we decided for  and against , to achieve , accepting .

Use the longer template only when a Y-Statement would be too compressed:

# ADR-NNNN: 

- Status: Accepted
- Date: YYYY-MM-DD

## Context

## Decision

## Alternatives Considered

## Consequences

Writing Rules

  • Write ADRs in English for public repositories.
  • Record Why, not What or How.
  • Do not duplicate requirements that belong in tests.
  • Do not duplicate implementation details that belong in code and types.
  • Name rejected alternatives explicitly.
  • State the accepted trade-off plainly.
  • Keep the ADR short enough that future agents will actually read it.
  • Link to related ADRs only when the relationship changes interpretation.

Workflow

For decision-relevant implementation tasks:

  1. Load tsdd and any language-specific skill required by the code.
  2. Establish the executable behavior with tests when the change has behavior.
  3. Inspect existing ADRs before choosing or recording the decision.
  4. Implement the code change.
  5. Create or supersede the ADR before finishing.
  6. Run the relevant verification gate.
  7. Report the ADR path and the verification result.

For documentation-only decision tasks:

  1. Inspect existing ADRs.
  2. Decide whether this is a new decision, a duplicate, or a supersession.
  3. Create or update only the necessary ADR files.
  4. Run the repository's markdown or generated-artifact checks when available.
  5. Report the ADR path.

Non-Goals

Do not create ADRs for:

  • Ordinary refactors with no architectural choice.
  • Language or framework defaults with no project-specific reason.
  • Test cases, acceptance criteria, or behavior specs.
  • Local code comments that explain one narrow line or block.
  • Scratch planning or TODO lists.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.