Files
afs/docs/PORTING_MAP.md
2025-12-30 13:15:10 -05:00

40 lines
2.0 KiB
Markdown

# Feature Map (legacy -> current)
Scope: inventory of legacy features and their status in the current AFS/AFS Scawful repos. Use this as a porting checklist; verify specifics when moving code.
Sources (local workspace):
- Previous core: `trunk/scawful/research/legacy/afs_legacy`
- Previous plugin: `trunk/scawful/research/legacy/afs_scawful_legacy`
- Current core: `trunk/scawful/research/afs`
- Current plugin: `trunk/scawful/research/afs_scawful`
Status legend: Ported, Partial, Planned, Not started.
## AFS Core
- Context roots + workspace registry: Ported (config + CLI + workspaces.toml). `src/afs/config.py`, `src/afs/cli.py`.
- Context validation/mapping/policy/graph: Ported. `src/afs/manager.py`, `src/afs/mapping.py`, `src/afs/policy.py`, `src/afs/validator.py`, `src/afs/graph.py`.
- Discovery + ensure-all: Ported. `src/afs/discovery.py`, `src/afs/cli.py`.
- Studio UI (ImGui): Ported (apps/studio). Active.
- CLI surface: Partial (core context + graph + plugins; orchestration/services missing).
- Plugin framework + adapters: Partial (discovery + load only; adapters not yet).
- Orchestration/pipelines/swarm: Not started.
- Service management + daemons: Not started.
- TUI: Not started.
- API/backends/integrations/models/llm: Not started.
- Native/cc/editor tooling: Not started.
## AFS Scawful Plugin
- Training paths/resources config: Ported. `src/afs_scawful/config.py`.
- Dataset registry indexing: Ported. `src/afs_scawful/registry.py`, `src/afs_scawful/cli.py`.
- Resource indexing: Ported. `src/afs_scawful/resource_index.py`, `src/afs_scawful/cli.py`.
- Training monitor config: Ported (AFS Studio loads plugin config).
- Validators (ASM/C++/KG/ASAR): Planned.
- Generators (ASM/Oracle/curated/etc.): Planned.
- Ops/runbooks/host scripts: Not started (needs reorg as CLI tasks).
## Near-term ports (priority)
1) Service config + minimal service manager (core).
2) Orchestrator config + routing skeleton (core).
3) Validator base + first validators (plugin).
4) Generator base + one small generator (plugin).