refactor(naming): A1 — ente→arje, vista→revista, pluma→fana

Rename batch de la Fase A del PLAN_MACRO:
- 25 crates ente-* → arje-* (protocol/init/runtime/compat). El linaje
  arje (init Linux) queda con prefijo coherente.
- vista → revista (revista-core + revista-web).
- pluma → fana (fana-md + fana-md-reader-web). fana absorbe el linaje
  markdown de pluma; será el writer DAG editor (prioridad alta).

Cambios:
- git mv de 29 crate dirs + 2 SDDs
- package/lib/bin names + path refs + imports .rs reescritos
- workspace Cargo.toml + comentarios de sección
- SDDs de init/runtime/compat/protocol actualizados a arje-
- SDD de revista + SDD de fana (reescrito: writer DAG editor)
- docs/STATUS.md, ROADMAP.md, PLAN_MACRO.md, arje-boot.md,
  arje-replace-systemd.md actualizados
- docs/changelog/akasha.md → chasqui.md

scripts/rename-fase-a.py idempotente (--dry-run soportado).
cargo check --workspace verde.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
sergio
2026-05-20 00:10:14 +00:00
parent 3fc6dcfa72
commit b83d40a833
159 changed files with 2384 additions and 1111 deletions
+3 -3
View File
@@ -1187,7 +1187,7 @@ mod tests {
#[test]
fn wirecard_postcard_with_priority_contexts() {
// Repro del bug que rompía akasha-nous-mock: ContextBias con
// Repro del bug que rompía chasqui-nous-mock: ContextBias con
// skip_serializing_if causaba que postcard leyera bytes
// equivocados. Sin esos atributos, el roundtrip es estable.
let src = r#"{
@@ -1266,8 +1266,8 @@ mod tests {
#[test]
fn new_assigns_real_ulid_and_label() {
let c = Card::new("akasha.engine");
assert_eq!(c.label, "akasha.engine");
let c = Card::new("chasqui.engine");
assert_eq!(c.label, "chasqui.engine");
assert_ne!(c.id, Ulid::nil(), "Card::new no debe dejar id en nil");
}