Skip to content

Commit bc8e0c4

Browse files
docs: Restore Lite files and revert READMEs to official English versions
1 parent dea3ecc commit bc8e0c4

2 files changed

Lines changed: 58 additions & 33 deletions

File tree

CONTINUITY LEGACY Pro/README.md

Lines changed: 44 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,54 @@
1-
# CONTINUITY LEGACY Pro 🏛️
1+
# CONTINUITY LEGACY by Ethernium
22

3-
Esta es la versión completa y robusta de **CONTINUITY LEGACY**, diseñada para gestionar la memoria persistente en proyectos de desarrollo de software largos y complejos asistidos por inteligencia artificial.
3+
`CONTINUITY LEGACY` is a standalone starter toolkit for building projects with persistent continuity, canonical memory, and repeatable handoff between humans and AI operators.
44

5-
## ¿Qué incluye la versión Pro?
5+
This toolkit is continuity-first: it provides a reusable discipline for context persistence, document parity, and governed handoff without depending on any external framework.
66

7-
- **Validación Estricta**: Comprueba la existencia y actualización de todos los documentos fundamentales (paridad documental y pertenencia al sistema).
8-
- **Dashboard Visual**: Un Hub (Página web HTML) para ver de un vistazo el estado de la salud del proyecto.
9-
- **Motor de Reglas**: Evita que tú o tu agente IA rompan reglas del proyecto o dejen tareas a medias escondiendo la deuda técnica.
10-
- **Detector de Secretos**: Impide que se guarden API keys o contraseñas en los documentos de memoria pública.
7+
## What this includes
8+
- a minimal canonical memory surface
9+
- a continuity bootstrap snapshot
10+
- document parity checks
11+
- system membership checks
12+
- an optional external developer layer like `PROJECTDEV/`
13+
- a strict continuity closeout command
14+
- a bootstrapper to personalize the template
1115

12-
## Estructura de esta versión
16+
## Quick Start
1317

14-
- `/.continuity`: La carpeta donde vive la memoria real, historial de decisiones y registros.
15-
- `/tools/continuity_legacy`: Aquí están los comandos principales que corren la verificación.
16-
- `/outputs`: Informes generados por la máquina en cada ciclo.
18+
### 1. The "Pro" Way (CLI) - RECOMMENDED
19+
Install the global CLI to initialize projects in one step:
1720

18-
## Uso Principal
21+
```powershell
22+
pip install continuity-legacy
23+
continuity-legacy init "My Project"
24+
```
25+
26+
### 2. Manual Control (Copy/Paste)
27+
1. Copy this folder to the root of your new project.
28+
2. Run the bootstrapper:
29+
30+
```powershell
31+
python tools/continuity_legacy/bootstrap_project.py --repo-root . --project-name "My Project" --project-slug my_project
32+
```
1933

20-
Para ejecutar el ciclo de seguridad y actualización estricto:
34+
3. If you want an external continuity layer:
2135

22-
```bash
23-
python tools/continuity_legacy/run_continuity_cycle.py --strict
36+
```powershell
37+
python tools/continuity_legacy/bootstrap_project.py --repo-root . --project-name "My Project" --project-slug my_project --enable-external-docs
2438
```
2539

26-
Para abrir el dashboard, simplemente abre en tu navegador:
27-
`continuity_dashboard.html`
40+
## Automation & Safety (Continuity Guard)
41+
To ensure the project remains coherent without manual effort, it includes a double-layered safety system:
42+
43+
1. **Local Guard (`pre-commit`)**: Installed by default. Uses **Soft Mode** to warn you about drift or missing markers while you work, without blocking your creative flow.
44+
2. **Border Guard (`pre-push`)**: Installed by default. Uses **Strict Mode** to **block the push** to GitHub if the continuity cycle is not 100% valid.
45+
46+
## Core Files
47+
- `PROJECT_CONTEXT.md`
48+
- `STATE.json`
49+
- `ROADMAP.md`
50+
- `.continuity/LIVE_HANDOFF.md`
51+
- `AGENT_START.md` (File to hand over to a new AI agent)
52+
53+
---
54+
**For more details, see the use cases and troubleshooting guide in the root directory.**

README.md

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,28 @@
77
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/release/python-380/)
88
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/SteveBlackbeard/CONTINUITY-LEGACY)
99

10-
**CONTINUITY LEGACY** es una herramienta práctica diseñada para que humanos e IAs colaboren en proyectos manteniendo el contexto, la visión y una verdad canónica clara. Funciona como una capa de memoria persistente ligera para el desarrollo asistido por IA, asegurando que tu asistente no pierda el hilo tras un reinicio.
10+
**CONTINUITY LEGACY** is a practical tool designed for humans and AIs to collaborate on projects while maintaining context, vision, and a clear canonical truth. It acts as a lightweight persistent memory layer for AI-assisted development, ensuring your AI pair-programmer doesn't lose context after a restart.
1111

1212
---
1313

14-
## ⚡ Novedades en la v5.0
14+
## ⚡ New in v5.0
15+
This version adds new utilities for the continuity cycle:
16+
- **Decision Engine Alpha**: The system now analyzes state and proposes the next strategic step.
17+
- **Security Guardian**: Integrated secret detection to prevent API key leaks.
1518

16-
Esta versión añade nuevas utilidades para el ciclo de continuidad:
17-
18-
- **Decision Engine Alpha**: El sistema ahora *piensa* y propone el siguiente paso estratégico.
19-
- **Security Guardian**: Detector de secretos integrado que bloquea fugas de API Keys.
20-
## 🏗️ Selecciona tu Edición
21-
22-
Este repositorio incluye dos versiones prácticas, según el tamaño de tu proyecto:
19+
## 🏗️ Select Your Edition
20+
This repository includes two practical versions, depending on the size of your project:
2321

2422
### 🔱 [CONTINUITY LEGACY Pro](./CONTINUITY%20LEGACY%20Pro)
25-
La versión completa para usar en equipo o proyectos largos. Incluye comprobación de dependencias de documentos, historial de decisiones y protección contra descuidos.
26-
- Ideal para: Repositorios medianos/grandes.
27-
- Incluye: Panel visual (HTML) y scripts de validación estricta de contexto.
23+
The complete version for team usage or long-term projects. Includes document dependency checking, decision history, and drift protection.
24+
- **Ideal for**: Medium to large repositories.
25+
- **Includes**: A visual dashboard (HTML) and strict context validation scripts.
2826

2927
### [CONTINUITY LEGACY Lite](./CONTINUITY%20LEGACY%20Lite)
30-
La versión ultraligera. Un solo script de Python sin dependencias externas.
31-
- Ideal para: Prototipos rápidos o pequeños proyectos personales.
32-
- Incluye: Solo lo básico para asegurar que el agente lee tu archivo de estado y contexto.
33-
- a [bootstrapper](file:///d:/Experimentos/CONTINUITY_LEGACY/CONTINUITY%20LEGACY/tools/continuity_legacy/bootstrap_project.py) to personalize the template
28+
The ultra-lightweight version. A single Python script with no external dependencies.
29+
- **Ideal for**: Rapid prototypes or small personal projects.
30+
- **Includes**: Only the basics to ensure the agent reads your state and context file.
31+
3432

3533
## Quick Start
3634

0 commit comments

Comments
 (0)