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

Create Decision

skill-tomzx-agents-create-decision · by tomzx

Record an architectural or implementation decision with context, alternatives considered, trade-offs, and consequences.

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

Install

$ agentstack add skill-tomzx-agents-create-decision

✓ 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 Used
  • 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-tomzx-agents-create-decision)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo 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 Create Decision? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Create Decision

Records a decision made during implementation as a lightweight Architecture Decision Record (ADR). Captures the context, the decision, alternatives considered, trade-offs, and expected consequences so future contributors understand why the code is the way it is.

Prerequisites

  • Apply the shared SDLC conventions in skills/sdlc/references/shared.md.
  • A concrete decision that was made (or needs to be made) during implementation
  • Enough context to explain the forces that shaped the decision

Steps

  1. Identify the decision: what question was answered or choice was made.
  2. Describe the context: what problem exists, what constraints apply, what prompted the decision.
  3. List the options that were considered (at least two, including the chosen one).
  4. State the decision clearly.
  5. Explain the trade-offs: what is gained and what is sacrificed.
  6. Describe the consequences: what changes as a result, what follow-up is expected.
  7. Save the document to .sdlc/knowledge/decisions/ (or the project's existing ADR directory if one exists) using the filename pattern N-.md where N is the next available number (counting existing files in that directory).

If this decision replaces an earlier one, run /supersede-decision afterwards to mark the prior ADR Superseded by [N] and record the reverse link. Do not hand-edit the older decision's status.

Output Format

Use the template at skills/sdlc/templates/knowledge/decision.md (copied to .sdlc/templates/knowledge/decision.md by /initialize-sdlc-directory; use the project's customized copy if present). Write the result to the artifact path named in the steps above.

Example Usage

Scenario 1: Library choice Deciding between two HTTP client libraries during implementation. Decision title: "Use httpx instead of requests for async support." Context: the service needs to make concurrent outbound calls; requests blocks. Option A (httpx): supports async/await natively, actively maintained. Con: adds a new dependency. Option B (requests + threads): familiar but increases thread overhead. Decision: use httpx. Consequence: all HTTP calls must use async context.

Scenario 2: Data modeling trade-off Deciding whether to store computed values or recalculate on read. Decision title: "Persist derived totals in the orders table." Context: query load is high, recalculation is expensive. Trade-off: gained query speed, sacrificed single source of truth (must keep totals in sync on write).

Scenario 3: Deferring complexity Choosing a simple approach now and noting what was deferred. Decision title: "Use a flat file for config instead of a database." Consequence: revisit if config grows beyond 50 keys or requires per-user values.

Completion Checklist

Before handing off to review, confirm:

  • [ ] At least two options considered (including the chosen one), each with pros and cons
  • [ ] If it replaces an earlier decision, /supersede-decision was run (do not hand-edit the older status)

Self-check the record against the [review-decision checklist](../review-decision/SKILL.md) and fix what you can, so review finds less to flag.

Useful Commands Reference

No CLI commands required. This skill operates on information provided in context and writes a Markdown file.

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.