Files
Socrates/phase-0/package.json
dtoro f1c4566576 Initial commit — design docs + Phase 0 validation harness
Sets up the Socrata project repo with:

docs/ — strategy and design documents
  - idea.md: full product vision
  - implementation-plan.md: Phase 0 + Phase 1 MVP plan
  - phase-0-validation.md: 2-week validation experiment strategy
  - phase-0-plan.md: concrete Phase 0 build plan
  - phase-0-results.md: Phase 0 gate outcome — GO for MVP
  - sysml-modeling.md: metamodel + SE discipline + validation rules
  - socrates.md: agent character, surfaces, modes, prompts, lifecycle
  - sync.md: bidirectional text↔diagram sync engineering
  - design-source/: HTML/CSS/JS handoff bundle from Claude Design

phase-0/ — validated harness (CLI, no UI, no DB)
  - LM Studio (local OpenAI-compatible) generation + detection + judge
  - PlantUML rendering for SysML model visualization
  - 10-seed corpus (8 working + 2 holdouts)
  - 5 corpus runs with iteration history in reports/
  - Final gate: 10/10 pass, mean 4.32/5, holdouts validated

Phase 1 MVP scope and milestones documented in implementation-plan.md.
2026-04-28 22:07:38 +02:00

31 lines
680 B
JSON

{
"name": "socrata-phase-0",
"version": "0.0.1",
"private": true,
"description": "Phase 0 validation harness — local LM Studio + PlantUML",
"type": "module",
"bin": {
"phase0": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"phase0": "tsx src/cli.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"openai": "^4.79.0",
"zod": "^3.24.1",
"commander": "^13.0.0",
"plantuml-encoder": "^1.4.0",
"dotenv": "^16.4.7",
"kleur": "^4.1.5"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/plantuml-encoder": "^1.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}