skills$openclaw/adr-gen
lxgicstudios6.5k

by lxgicstudios

adr-gen – OpenClaw Skill

adr-gen is an OpenClaw Skills integration for coding workflows. Generate Architecture Decision Records with AI. Use when documenting technical decisions.

6.5k stars7.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameadr-gen
descriptionGenerate Architecture Decision Records with AI. Use when documenting technical decisions. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/ai-adr
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/ai-adr
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains adr-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
471 B
SKILL.md
2.6 KB
SKILL.md

name: adr-gen description: Generate Architecture Decision Records with AI. Use when documenting technical decisions.

ADR Gen

"Why did we use Redis instead of Memcached?" Six months later, nobody remembers. This tool generates Architecture Decision Records from your context. Captures the decision, the alternatives considered, and the reasoning. Future you will thank present you.

One command. Zero config. Just works.

Quick Start

npx ai-adr "We chose PostgreSQL over MongoDB for our user data"

What It Does

  • Generates properly formatted ADR documents
  • Documents the context and problem being solved
  • Lists alternatives that were considered
  • Explains the decision and its reasoning
  • Notes consequences and trade-offs

Usage Examples

# Generate an ADR from a decision
npx ai-adr "Switching from REST to GraphQL for our public API"

# Include context about your constraints
npx ai-adr "Using Kafka for event streaming" --context "High throughput, multi-consumer"

# Output to your docs folder
npx ai-adr "Adopting TypeScript" --output docs/adr/001-typescript.md

Best Practices

  • Write ADRs when you make decisions - Not six months later when you forgot why
  • Include the alternatives - What else did you consider? Why didn't you pick those?
  • Be honest about trade-offs - Every decision has downsides. Document them.
  • Number your ADRs - 001-database-choice.md, 002-auth-provider.md, etc.

When to Use This

  • Making a significant technical decision
  • Onboarding new team members who ask "why did we..."
  • Preparing for architecture reviews
  • Building a knowledge base of your technical choices

Part of the LXGIC Dev Toolkit

This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.

Find more:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended.

npx ai-adr --help

How It Works

The tool takes your decision statement, researches common alternatives and trade-offs for that technology choice, then generates a structured ADR document following the standard format: Title, Status, Context, Decision, Consequences.

License

MIT. Free forever. Use it however you want.


Built by LXGIC Studios

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. ```bash npx ai-adr --help ```

FAQ

How do I install adr-gen?

Run openclaw add @lxgicstudios/ai-adr in your terminal. This installs adr-gen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/ai-adr. Review commits and README documentation before installing.