feat: implement RCM phases 0-7 — full system implementation#3
Open
cubap wants to merge 5 commits into
Open
Conversation
Phase 0 - Repository Shaping: - Create folder structure (src/core, connectors, storage, graph, viewers, ui) - Update README.md with core thesis, principles, standards, structure - Create docs/architecture.md, docs/data-model.md, docs/annotation-profiles.md - Create ADRs: JSON-LD everywhere, no human confidence, collections as annotations Phase 1 - Core Model and JSON-LD Shapes: - TypeScript interfaces for Thing, Representation, Expression, Annotation, Agent, Collection, Evidence - JSON Schema validation for all core types and annotation profiles - Serialization module with round-trip validation - Test fixtures for all entity types and annotation profiles Phase 2 - RERUM Client Layer: - RERUM client types and interface - Client implementation with CRUD, annotation queries, collection queries - LDN announcement helpers for publishing collections, things, annotations - Version history support Phase 3 - Resource Resolver / Connector Layer: - Connector base interface and registry - IIIF connector for manifest/canvas resolution - Resource resolver (paste URL, get graph seeds) - Graph engine with chonky node assembly and traversal
- Phase 4: Viewers (IIIF, PDF, Map, Network, Detail) with graph slice rendering - Phase 5: Project profiles and configuration (ProfileRegistry, maximum minimum interfaces) - Phase 6: Entity birth (spontaneous generation from selectors), eventities, evidence classes - Phase 7: Publication and export (JSON-LD bundles, static HTML, LDN announcements) - Project config: package.json (ESM), tsconfig.json, .gitignore, main entry point - Updated README with complete phase status table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Implements all 7 development phases for the RERUM Collection Management (RCM) system based on planning documents in
_planning/.Phases Implemented
Phase 0: Repository Shaping ✅
Phase 1: Core Model ✅
Phase 2: RERUM Client ✅
RerumClientImplwith CRUD + annotation queriesPhase 3: Connector Layer + Graph Engine ✅
Phase 4: Viewers ✅
Phase 5: Project Profiles ✅
ProjectProfiletype for "maximum minimum" configuration-driven interfacesProfileRegistryfor loading and managing profilesPhase 6: Entity Birth & Eventities ✅
Phase 7: Publication & Export ✅
Project Configuration ✅
package.json(ESM module with exports map)tsconfig.json(ES2022, strict, NodeNext).gitignoresrc/index.ts)Files Changed
18 files changed, 1,364 insertions(+), 5 deletions(-)
Next Steps
npm installandnpm run typecheck