🎯

dynamodb-toolbox

🎯Skill

from martinffx/claude-code-atelier

VibeIndex|
What it does

Provides utility functions and abstractions for simplified interaction with Amazon DynamoDB, offering type-safe schema definitions, query builders, and repository patterns for TypeScript projects.

dynamodb-toolbox

Installation

Install skill:
npx skills add https://github.com/martinffx/claude-code-atelier --skill dynamodb-toolbox
1
AddedJan 27, 2026

Skill Details

SKILL.md

Overview

# Claude Code Atelier

![Atelier - A collaborative workshop for software development](atelier.jpg)

> An atelier is the private workshop or studio where a principal master and a number of assistants, students, and apprentices can work together producing fine art or visual art released under the master's name or supervision.

>

> [Wikipedia](https://en.wikipedia.org/wiki/Atelier)

A software development atelier for Claude Code - spec-driven development, code quality, deep thinking, and TypeScript patterns.

Plugins

[spec](plugins/atelier-spec/README.md) - Spec-Driven Development

  • Lightweight documentation over heavyweight planning - Replace PRDs with minimal business context + detailed implementation specs
  • Dependency-driven over sprint-driven - Order tasks by technical requirements (Entity β†’ Repository β†’ Service β†’ Router)
  • AI-assisted implementation - Structured specs enable AI agents to make informed technical decisions without constant prompting
  • Prevention over debugging - Spot issues in design, not production
  • Enforced patterns - Layered architecture with domain-driven design and layer boundary testing

What you get: 9 commands + 5 skills + 3 specialized agents (architect, oracle, clerk)

```bash

# Greenfield workflow

/spec:create # Gather requirements

/spec:design # Generate technical design

/spec:plan # Create implementation plan with Beads epic

/spec:work [feature] # AI-driven implementation with stub→test→fix workflow

# Brownfield workflow

/spec:propose # Propose changes to existing feature

/spec:design # Design changes

/spec:plan # Plan implementation

/spec:work [feature] # Implement changes

# Progress tracking

/spec:status [feature] # Track progress via Beads

```

[β†’ Full spec plugin documentation](plugins/atelier-spec/README.md)

---

[code](plugins/atelier-code/README.md) - Code Quality

Code reviews and conventional commits that follow your project standards.

What it does:

  • Reviews code changes against architectural patterns and standards
  • Identifies security vulnerabilities, performance issues, maintainability concerns
  • Generates conventional commits with proper scope and detailed context
  • Enforces consistency across your codebase

```bash

/code:review # Get structured, relevant perspective on changes

/code:commit [message] # Create well-crafted conventional commit

```

[β†’ Full code plugin documentation](plugins/atelier-code/README.md)

---

[oracle](plugins/atelier-oracle/README.md) - Deep Thinking

Spicier, structured thinking and reasoning for complex problems that need deeper analysis.

When to use:

  • Complex bugs that require investigation across multiple layers
  • Architecture decisions with multiple trade-offs
  • Performance bottlenecks that need systematic profiling
  • Problems where the root cause isn't immediately obvious

```bash

/oracle:debug # Systematic debugging with bisect methodology

```

Plus 2 auto-invoked skills: atelier-challenge (critical thinking), atelier-thinkdeep (extended reasoning)

[β†’ Full oracle plugin documentation](plugins/atelier-oracle/README.md)

---

[typescript](plugins/atelier-typescript/README.md) - TypeScript Patterns

Production-ready patterns for the TypeScript ecosystem - automatically loaded when relevant.

Coverage:

  • REST API design - Resource naming, HTTP methods, error responses, pagination, versioning
  • DynamoDB Toolbox v2 - Single-table design, entity definitions, GSI patterns, queries
  • Drizzle ORM - Type-safe SQL for PostgreSQL/MySQL/SQLite/Cloudflare D1/Durable Objects
  • Fastify + TypeBox - Route handlers, validation, type-safe APIs
  • Build Tools - Bun, tsgo, Vitest, Biome, Turborepo configurations

No commands needed - patterns are auto-invoked when working with these technologies.

[β†’ Full typescript plugin doc