atomic-framework-cli-api

Organize Atomic Framework CLI command routing and API entrypoint handling.

9|1|Updated Apr 29, 2026
One-click install
npx skills add https://github.com/MADEVAL/Atomic-Framework-Skills --skill atomic-framework-cli-api
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: atomic-framework-cli-api
Source: https://github.com/MADEVAL/Atomic-Framework-Skills/tree/main/atomic-framework-cli-api
Command: npx skills add https://github.com/MADEVAL/Atomic-Framework-Skills --skill atomic-framework-cli-api

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It removes guesswork from Atomic Framework command-line and API work by giving verified guidance for handlers, entrypoints, and scaffold flows.

Core Features & Use Cases

  • CLI commands for help, migrations, queue operations, scheduling, database inspection, file conversion, and project initialization.
  • API entrypoints with JSON request parsing, route parameter access, and success or failure responses.
  • Scaffold and init workflows for generating boilerplate and command handlers in a consistent framework style.

Quick Start

Ask the skill to help you add or debug a php atomic command or API controller in Atomic Framework.

Frequently Asked Questions about atomic-framework-cli-api

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I route and dispatch console commands in a PHP atomic framework?

PHP atomic command routing requires command normalization and explicit route dispatch to map console input to the correct handler, ensuring proper execution of migrations, queue operations, and scheduling tasks.

How do I create JSON-only API responses for an Atomic Framework entrypoint?

JSON-only API responses are generated by parsing incoming JSON requests, accessing route parameters, and returning structured success or failure payloads with explicit exit codes from the API entrypoint handler.

What is the best way to scaffold boilerplate and init workflows for Atomic Framework commands?

Scaffolding boilerplate and init workflows is handled through dedicated CLI commands that generate consistent command handlers and project initialization files, streamlining framework setup and reducing manual configuration errors.

Does Atomic Framework CLI support database migrations, seeding, and file conversion?

Atomic Framework CLI supports database inspection, migration execution, seeding workflows, and file conversion tasks, all managed through normalized console commands with explicit exit codes for reliable automation.

Why does my Atomic Framework API controller return a non-JSON response?

Non-JSON responses typically occur when the API entrypoint bypasses the required JSON-only response format, which mandates strict JSON request parsing and structured success or failure output with explicit exit codes.