reversa-reconstructor

Generate and execute bottom-up reconstruction plans from Reversa specifications.

1|Updated Dec 20, 2025
One-click install
npx skills add https://github.com/Rdinda/FMA_Pontos --skill reversa-reconstructor-rdinda
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: reversa-reconstructor
Source: https://github.com/Rdinda/FMA_Pontos/tree/main/.agents/skills/reversa-reconstructor
Command: npx skills add https://github.com/Rdinda/FMA_Pontos --skill reversa-reconstructor-rdinda

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It solves the problem of turning software specifications into a working implementation when you want to re-create the system from scratch with controlled, step-by-step execution.

Core Features & Use Cases

  • Bottom-up executable reconstruction: Builds a reconstruction plan from Reversa-generated specs and executes one task at a time, preserving context and tokens.
  • Original vs migration spec sourcing: Detects whether migration handoff specs exist and lets you choose between reconstructing from original specs or migration specs.
  • Plan continuity and validation: Reuses or regenerates an existing reconstruction plan safely, and enforces “execute what the specs say” fidelity.

Quick Start

Run the reversa-reconstructor skill in your project directory and respond to any source-choice prompts, then type INICIAR to execute the first reconstruction task.

Frequently Asked Questions about reversa-reconstructor

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

FAQPage Schema
How do I generate an executable reconstruction plan from software specifications?

To generate an executable reconstruction plan from software specifications, use a bottom-up planning approach that parses Reversa specs into sequential tasks. The plan executes one task at a time on demand, reading only declared files to preserve tokens and pausing for any missing gaps.

What is bottom-up reconstruction when re-implementing an existing system?

Bottom-up reconstruction is a workflow that rebuilds an existing system from captured software specs by executing granular tasks sequentially. It enforces strict execution fidelity, ensuring the implementation matches exactly what the specifications declare without deviating from the original plan.

Can I use migration specifications to reconstruct a repository instead of the original specs?

Yes, you can reconstruct a repository using migration specifications. The workflow detects whether migration handoff specs exist and prompts you to choose between sourcing the reconstruction from the original software specs or the alternative migration specs.

How do I start executing a generated reconstruction plan task by task?

To start executing a reconstruction plan, run the workflow in your project directory, respond to any source-choice prompts, and type INICIAR to trigger the first task. The system carries out each step sequentially, preserving context between executions.

Does the reconstruction workflow pause if required input files are missing?

Yes, the reconstruction workflow pauses if required input files are missing. It enforces strict execution requirements by reading only files declared in each task's designated read field, halting safely whenever it encounters gaps rather than proceeding with incomplete data.

What is the best way to preserve token usage during automated code generation from specs?

The best way to preserve token usage during automated code generation from specs is to execute a bottom-up plan that restricts file reading to only those explicitly declared in each task. This prevents unnecessary context loading and ensures efficient, controlled repository automation.