read-workflow

Reads all files in a named workflow group to load full context before editing.

Updated Mar 9, 2026
One-click install
npx skills add https://github.com/yunior123/origna_gta_firebase --skill read-workflow-yunior123
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: read-workflow
Source: https://github.com/yunior123/origna_gta_firebase/tree/main/.claude/skills/read-workflow
Command: npx skills add https://github.com/yunior123/origna_gta_firebase --skill read-workflow-yunior123

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Editing code without full context leads to inconsistent changes across frontend, backend, and schema layers. This Skill loads every file belonging to a named workflow group before any modification is made. ## Core Features & Use Cases - Workflow-Scoped Context Loading: Looks up the requested workflow in docs/WORKFLOW_INDEX.md and reads every listed file in order. - Ordered Reading: Reads frontend Dart files first, then backend Python files, then schema and test files. - Structured Summary: Returns key data flows, current logic state, frontend-backend field mappings, and spotted inconsistencies. - Use Case: Before modifying the checkout flow, run the skill with the checkout argument to load all related Flutter and Firebase Functions code and receive a summary of field mappings and inconsistencies. ## Quick Start Ask the assistant to run the read-workflow skill for the checkout workflow before making any edits to checkout-related files.

Frequently Asked Questions about read-workflow

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

FAQPage Schema
How do I load full context before editing code in a monorepo?▼

Use a workflow-indexed reading process: look up the workflow name in docs/WORKFLOW_INDEX.md, then read every listed file in order. This skill automates that sequence and returns a summary of data flows and field mappings.

What workflows can I read with this skill?▼

The documented invocations cover checkout, orders, products, and auth workflows. Any workflow section defined in docs/WORKFLOW_INDEX.md can be passed as the argument.

Does this skill work with Flutter and Firebase Functions projects?▼

Yes, it is designed for a Flutter app with a Firebase Functions backend. It reads frontend Dart files first, then backend Python files, followed by schema and test files.

What does the skill return after reading the files?▼

It returns a concise summary covering key data flows, the current state of the logic, field mappings between frontend and backend, and any inconsistencies spotted across the files.

What happens if WORKFLOW_INDEX.md is missing?▼

The skill depends on docs/WORKFLOW_INDEX.md as its lookup source, so the index file must exist and contain a section for the requested workflow for the reading steps to proceed.