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
44 changes: 44 additions & 0 deletions nodekit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
schemaVersion: nodekit.repo/v1
repository: HomenShum/NodeProof
lifecycle: production
support: active
role: certification-harness
commandProfile: application

canonicalFor:
- proofloop.certification

consumes:
- nodeplatform.repo-contract
- nodeagent.agent-run
- nodeagent.trace-workpaper

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: Doctor and maturity scans are deterministic; live providers and hosted lanes remain explicit opt-ins.

environment:
contractVersion: nodeplatform.env/v1
status: not-applicable

proof:
command: npm run proof
receiptSchema: proofloop-agent-era-maturity-v1

contractDeclarations:
- concept: nodeagent.agent-run
signature: agent-run-result
path: src/agentAdapters.ts
mode: adapter
origin: nodeagent.agent-run

architectureExceptions: []
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@
"LICENSE"
],
"scripts": {
"dev": "tsc -p tsconfig.json --watch",
"demo": "npm run proofloop:doctor",
"doctor": "npm run proofloop:doctor",
"check": "npm test && npm audit --omit=dev",
"proof": "npm run proofloop:maturity",
"build": "tsc -p tsconfig.json && npm run build:site",
"build:site": "node scripts/build-site.mjs",
"prepublishOnly": "npm run build",
Expand Down
Loading