dare-blueprint

dare-blueprint is a skill for Claude Code, Codex from dewtech-technologies/dare-method. It costs 48 tokens per session (3,002 once invoked), scanned A, original, MIT.

Uma ferramenta que transforma um documento de design aprovado em um plano técnico detalhado chamado BLUEPRINT.md. Esse plano descreve a arquitetura, os endpoints, o modelo de dados e as tarefas de implementação.

In plain words
What is it for?
Serve para detalhar a stack, funcionalidades, requisitos, restrições, endpoints, modelos de dados e escolhas de arquitetura antes da execução.
Why use it?
Converte decisões de design em instruções organizadas para construir o sistema.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/dewtech-technologies/dare-method/dare-blueprint
Any agent
npx skills add dewtech-technologies/dare-method --skill dare-blueprint
Clone the repo
git clone --depth 1 https://github.com/dewtech-technologies/dare-method

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dare-blueprint

README.md
[![agentmods](https://agentmods.dev/badge/skills/dewtech-technologies/dare-method/dare-blueprint.svg)](https://agentmods.dev/skills/dewtech-technologies/dare-method/dare-blueprint)
Your own site
<a href="https://agentmods.dev/skills/dewtech-technologies/dare-method/dare-blueprint"><img src="https://agentmods.dev/badge/skills/dewtech-technologies/dare-method/dare-blueprint.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,002 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00048 $0.03002
Opus 5 $0.00024 $0.01501
Sonnet 5 $0.00010 $0.00600
Haiku 4.5 $0.00005 $0.00300

Measured 4d ago against content hash 14a321851215, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

dare-blueprint scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

implementations/antigravity/.agents/skills/dare-blueprint/SKILL.md · 375 lines

How it starts

The opening of the file, as written. The whole thing — 375 lines — stays where its author put it; the contents beside it link to each section on GitHub.

DARE Blueprint Skill

Você é um arquiteto de software especializado em design de APIs e sistemas. Seu objetivo é transformar o Design aprovado em uma arquitetura detalhada que será a base para implementação.

Quando usar esta skill

  • Design.md foi aprovado pelo usuário
  • Precisa-se detalhar a arquitetura técnica
  • Necessário documentar endpoints e modelos
  • Segunda fase do Método DARE

Equivalente no terminal: dare blueprint --ai

Como usar

Passo 1: Ler o Design Aprovado

Leia o arquivo DARE/DESIGN.md que foi aprovado. Extraia:

  • Stack técnica
  • Funcionalidades principais
  • Requisitos não-funcionais
  • Restrições

Passo 1b: Trade-offs (Architect)

Antes do scaffold, leia DARE/PATTERNS.md e DARE/patterns-facts.json. Formule perguntas de trade-off ancoradas em padrões reais — cada pergunta cita o id do DiscoveredPattern. 1 passagem sequencial; sem runtime multi-agente. Não invente padrões: só referencie os 🟢 do CLI; conclusões 🟡.

Passo 2: Analisar Contexto

Leia os arquivos de contexto:

  • .agents/rules/dare-workflow.md (ou .cursorrules se Cursor)
  • Exemplos em examples/
  • Templates em templates/

Passo 3: Integrar Segurança

Consulte skill-security para:

  • Autenticação/Autorização
  • Validação de entrada
  • Criptografia
  • Proteção contra vulnerabilidades OWASP

Passo 4: Gerar a Arquitetura

Crie um documento DARE/BLUEPRINT.md com a seguinte estrutura:

# Blueprint: [Nome do Projeto]

## Visão Geral da Arquitetura
[Descrição da arquitetura escolhida: Monolito, Microserviços, Hexagonal, etc]

## Segurança (OWASP)
### Autenticação e Autorização
- Método: JWT com RS256
- Armazenamento: Bearer token no header
- Validação: Middleware em todos os endpoints protegidos

### Proteção de Dados
- Senhas: Bcrypt com salt
- Dados sensíveis: Encriptados em repouso
- Transmissão: HTTPS obrigatório

### Validação
- Input: Whitelist de valores permitidos
- Output: Escape de caracteres especiais
- Rate Limiting: 5 req/min por IP

## Modelo de Dados
### Tabela: users
| Campo | Tipo | Restrições |
|-------|------|-----------|
| id | UUID | PK |
| email | VARCHAR(255) | UNIQUE, NOT NULL |
| password_hash | VARCHAR(255) | NOT NULL (Bcrypt) |
| name | VARCHAR(255) | NOT NULL |
| is_active | BOOLEAN | DEFAULT true |
| created_at | TIMESTAMP | DEFAULT NOW() |
| updated_at | TIMESTAMP | DEFAULT NOW() |

### Tabela: refresh_tokens
| Campo | Tipo | Restrições |
|-------|------|-----------|
| id | UUID | PK |
| user_id | UUID | FK users.id |
| token | VARCHAR(500) | UNIQUE |
| expires_at | TIMESTAMP | NOT NULL |
| revoked_at | TIMESTAMP | NULL |
| created_at | TIMESTAMP | DEFAULT NOW() |

## Endpoints da API

| Método | Endpoint | Autenticação | Descrição |
|--------|----------|--------------|-----------|
| POST | /api/auth/register | Não | Registrar novo usuário |
| POST | /api/auth/login | Não | Login e obter JWT |
| POST | /api/auth/refresh | Não | Renovar JWT com refresh token |
| POST | /api/auth/logout | JWT | Logout e revogar tokens |
| GET | /api/users/me | JWT | Obter dados do usuário logado |

### Detalhes dos Endpoints

#### POST /api/auth/register
**Request:**
```json
{
  "email": "[email protected]",
  "password": "SecurePass123!",
  "name": "John Doe"
}

Response (201):

{
  "id": "uuid",
  "email": "[email protected]",
  "name": "John Doe",
  "created_at": "2026-04-14T10:00:00Z"
}

Validações:

  • Email válido e único
  • Senha: mínimo 8 caracteres, 1 maiúscula, 1 número, 1 caractere especial
  • Name: mínimo 3 caracteres

Estrutura de Diretórios

Mantenha esta seção stack-agnóstica. Liste os agrupamentos lógicos (domínio, infraestrutura, interfaces, testes, migrations) e use a nomenclatura idiomática da stack escolhida no dare init. Os exemplos abaixo cobrem as 5 stacks suportadas — use apenas o bloco da stack do projeto, não os 5 juntos.

projeto/
├── src/
│   ├── auth/
│   │   ├── auth.controller.ts
│   │   ├── auth.service.ts
│   │   ├── auth.module.ts
│   │   └── dto/{register,login}.dto.ts
│   ├── users/{users.entity.ts,users.service.ts}
│   └── main.ts
├── migrations/{001_users.ts,002_refresh_tokens.ts}
└── test/auth.e2e-spec.ts
projeto/
├── src/
│   ├── domain/{user.rs,refresh_token.rs}
│   ├── handlers/{register.rs,login.rs,refresh.rs,logout.rs}
│   ├── middleware/jwt.rs
│   └── main.rs
├── migrations/{001_users.sql,002_refresh_tokens.sql}
└── tests/auth_integration.rs
projeto/
├── app/
│   ├── routers/auth.py
│   ├── models/{user.py,refresh_token.py}
│   ├── schemas/{register.py,login.py}
│   ├── services/auth.py
│   └── main.py
├── alembic/versions/{001_users.py,002_refresh_tokens.py}
└── tests/test_auth.py
projeto/
├── app/Http/Controllers/AuthController.php
├── app/Http/Requests/{RegisterRequest,LoginRequest}.php
├── app/Models/{User,RefreshToken}.php
├── app/Services/AuthService.php
├── database/migrations/{create_users,create_refresh_tokens}_table.php
├── routes/api.php
└── tests/Feature/AuthTest.php
projeto/
├── cmd/server/main.go
├── internal/
│   ├── handlers/{register,login,refresh,logout}.go
│   ├── models/{user,refresh_token}.go
│   └── middleware/jwt.go
├── migrations/{001_users.sql,002_refresh_tokens.sql}
└── handlers_test.go

Plano de Execução

Fase 1: Setup Inicial

  • Criar migrations (users, refresh_tokens)
  • Configurar autenticação JWT
  • Setup de testes

Fase 2: Autenticação

  • Implementar RegisterController
  • Implementar LoginController
  • Implementar RefreshController

Fase 3: Proteção

  • Implementar Middleware de JWT
  • Implementar Rate Limiting
  • Implementar Logout

Fase 4: Testes e Deploy

  • Testes unitários
  • Testes de integração
  • Containerização com Docker

Comandos de Setup

Liste somente os comandos da stack do projeto (definida em dare init / dare.config.json#backend). Não inclua todos os blocos abaixo — use o que casa com a stack escolhida.

npm install
cp .env.example .env
npm run migration:run
npm test
npm run start:dev
cargo build
cp .env.example .env
sqlx migrate run
cargo test
cargo run
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env
alembic upgrade head
pytest
uvicorn app.main:app --reload
composer install
cp .env.example .env
php artisan key:generate
php artisan migrate
php artisan test
php artisan serve
go mod download
cp .env.example .env
migrate -path ./migrations -database "$DATABASE_URL" up
go test ./...
go run ./cmd/server

Próximas Etapas

  1. Revisar e aprovar este Blueprint
  2. Executar /generate-tasks DARE/BLUEPRINT.md
  3. Continuar com o Método DARE

Read the full file on GitHub · 375 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 375 lines · 48 tokens per session scan A 14a321851215

Subscribe to this mod's changes

dare-blueprint is a skill published in the GitHub repository dewtech-technologies/dare-method (5 stars, last pushed 1mo ago), licensed MIT. It adds 48 tokens to every session and 3,002 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

setup-background-job

Set up scheduled background jobs using Quartz.NET with proper configuration, error handling, and dependency injection.

andresharpe/dotbot · 22 tokens

inbound-triage

Maintainer-only. Use when triaging inbound GitHub issues and pull requests on skyf0xx/hedgehog — "triage the issues", "check the PRs", "review inbound", "what's in the queue". Reads each item read-only, judges it for security and for whether it is real, then fixes and closes or comments and closes. Not part of the…

skyf0xx/hedgehog · 102 tokens

conventional-commits

Use when uncommitted changes need to be split into atomic, conventional commits ordered for review. Triggers on "commit this", "make commits", "clean up commits", "commit the changes". In Hedgehog, each Loop step is already meant to be its own commit — this skill matters most when a Correction Protocol fast-forward…

skyf0xx/hedgehog · 88 tokens

pr-writing

Use whenever writing a PR title/description, a commit message body, a code review comment, or an issue — in Hedgehog's own repo or any consuming project. Triggers on "open a PR", "write the PR description", "comment on this PR", "file an issue". Covers writing style (terse, info-dense, Simplified Technical English)…

skyf0xx/hedgehog · 107 tokens

hedgehog-daily

Use when a change request lands on a project that already has .hedgehog/ and no build in flight — a finished build being adjusted, or an adopted repo's next piece of work. Triggers on any "change this", "fix this", "add this" on such a project. Sizes the request against the installed core's own layers and routes it to…

skyf0xx/hedgehog · 0 tokens

hedgehog

Use when the user has agreed to install the Hedgehog build discipline in a project that does not have it yet, or when they mention Hedgehog by name — carries the npx @skyf0xx/hedgehog init install procedure and its core and host flags. The plugin's SessionStart hook decides when to raise the offer.

skyf0xx/hedgehog · 74 tokens