Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/node-platform-conformance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Node Platform conformance

on:
pull_request:
push:
branches: [main]

permissions:
contents: read

jobs:
node-platform:
uses: HomenShum/node-platform/.github/workflows/repo-conformance.yml@ef4ac8a011b230efa3324892a193abe02ff2d673
40 changes: 40 additions & 0 deletions nodekit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
schemaVersion: nodekit.repo/v1
repository: HomenShum/NodeVoice
lifecycle: preview
support: active
role: domain-application
commandProfile: application

canonicalFor:
- nodevoice.room-state

consumes:
- nodeplatform.repo-contract
- nodeplatform.environment
- nodeagent.agent-run
- nodeagent.policy-context
- proofloop.certification

commands:
dev: { script: dev, mode: service }
demo: { script: demo, mode: finite }
doctor: { script: doctor, mode: finite }
check: { script: check, mode: finite }
proof: { script: proof, mode: finite }

noKey:
status: certified
command: npm run demo
externalAccountsRequired: 0
disclosure: The default comparison is deterministic; hosted voice, model, and TTS paths require explicit configuration.

environment:
contractVersion: nodeplatform.env/v1
status: migration-planned

proof:
command: npm run proof
receiptSchema: null

contractDeclarations: []
architectureExceptions: []
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@
"type": "module",
"description": "NodeVoice: shared-state voice rooms for multi-agent voice coordination and NodeAgent-style frame agents.",
"scripts": {
"demo": "npm run demo:compare",
"demo:voice": "tsx src/voice/runVoiceMvp.ts",
"demo:node": "tsx src/nodeagents/runNodeAgentMvp.ts",
"start": "tsx src/server.ts",
"check": "tsc --noEmit",
"check:client": "tsc --noEmit -p tsconfig.client.json",
"doctor": "npm run check && npm run check:client",
"proof": "npm run test && npm run demo:compare",
"test": "vitest run --root .",
"demo:compare": "tsx src/compare/runComparisonMvp.ts",
"dev": "vite",
Expand Down
Loading