pramana-protocol 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/PROTOCOL.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ```
6
6
  Document: PRAMANA/1.0
7
7
  Status: OPEN DRAFT — Reference Implementation by ANKR
8
- Version: 1.0.0
8
+ Version: 1.1.0
9
9
  Date: 2026-03-28
10
10
  Author: Capt. Anil Kumar Sharma
11
11
  PowerPbox IT Solutions Pvt Ltd
@@ -914,6 +914,100 @@ Priority date: 2026-03-28
914
914
 
915
915
  ---
916
916
 
917
+ ## 18. Version 1.1 — Amendments from Reference Implementation POC (2026-03-28)
918
+
919
+ Three underspecifications in v1.0 were identified by running the POC against 514 real AnkrCodex
920
+ nodes, 176 CCA audits, and 243 Knowledge Codex nodes. All three are non-breaking — they narrow
921
+ what counts as a strand confirmation. They cannot produce a lower level than v1.0 would have
922
+ given; they can only prevent false promotions.
923
+
924
+ ---
925
+
926
+ ### PRM-AMEND-001 — Knowledge Strand Requires Domain Match (AND, not OR)
927
+
928
+ **Problem discovered:** A query for "quantum hull coating compliance" against the maritime domain
929
+ matched three "routing protocol" research documents (which contained the word "routing") and was
930
+ falsely promoted to PRAMANA-1. The Knowledge Codex contains 243 nodes across many domains.
931
+ Keyword-only matching without domain confirmation is insufficient.
932
+
933
+ **v1.0 rule (wrong):** Knowledge strand confirmed if: `keywords_match OR domain_match`
934
+
935
+ **v1.1 rule:** Knowledge strand confirmed if: `domain_match AND keywords_match`
936
+
937
+ - `domain_match`: the node's declared `domain` field must include the query domain string
938
+ (or the query domain must include the node's primary domain segment)
939
+ - `keywords_match`: at least one meaningful query keyword (length > 3) must appear in the
940
+ node's title, content, or tags
941
+ - Both conditions are required. A node from a different domain that happens to contain
942
+ a query keyword does NOT satisfy the Knowledge strand.
943
+
944
+ **PHALA consequence:** The authenticity level is never promoted by cross-domain keyword noise.
945
+
946
+ ---
947
+
948
+ ### PRM-AMEND-002 — PHALA.rule_id Must Be the Applied Rule, Not the Search Result
949
+
950
+ **Problem discovered:** The v1.0 POC set `PHALA.rule_id = knowledge_registry.research[0].id`
951
+ — the first node in the registry array, not the matched node. This meant PHALA was returning
952
+ outcomes to a rule that had nothing to do with the query. The RCA loop was being poisoned.
953
+
954
+ **v1.1 rule:** `PHALA.rule_id` must be set from the `rule_id` or `id` field of the
955
+ knowledge node that was actually matched and applied. If no knowledge strand is available,
956
+ `PHALA.rule_id` must be `"{DOMAIN}-UNKNOWN"` — explicitly signalling that no rule was applied.
957
+
958
+ **Implementation note:** The knowledge strand check function must return the `applied_rule_id`
959
+ as part of its result. The PHALA construction reads from that result, not from the registry index.
960
+
961
+ **Why this matters:** The entire value of PHALA is that outcomes return to the source RULE.
962
+ If `rule_id` points at the wrong rule, the RCA loop runs in the wrong place. The two-wrongs
963
+ detection (Section 11) also depends on correct rule attribution.
964
+
965
+ ---
966
+
967
+ ### PRM-AMEND-003 — Proof Strand: Dormant Services Are Attestable
968
+
969
+ **Problem identified in design:** The v1.0 spec implied that a service must be currently
970
+ online for the Proof strand to be satisfied. This over-restricts the protocol.
971
+
972
+ **The dabbawalla principle:** A dabbawalla who is resting is not a broken dabbawalla.
973
+ He can be called back. A service that has been CCA-audited and is registered in the system's
974
+ service registry is attestable — it can be woken on demand.
975
+
976
+ **v1.1 attestation modes** (three tiers, not binary):
977
+
978
+ | Mode | Meaning | Proof strand |
979
+ |---|---|---|
980
+ | `ONLINE` | Service is live and responding | Strongest — full attestation |
981
+ | `DORMANT` | Audited, offline, registered — awakeable via service manager | Valid — CCA record is the proof |
982
+ | `UNREGISTERED` | No CCA audit record exists | Proof strand unavailable |
983
+
984
+ **Rule:** A service in DORMANT mode satisfies the Proof strand. Its CCA audit record is the
985
+ proof document. The system should display the attestation mode to the user so they can choose
986
+ to wake the service if they require live verification.
987
+
988
+ **PHALA addition:** The `attestation_mode` field is added to PhalaPayload (v1.1). This allows
989
+ the receiving rule to distinguish between a DORMANT-proof result and an ONLINE-proof result
990
+ in RCA analysis.
991
+
992
+ **Implementation note:** The proof strand check function must return the best attestation mode
993
+ across all matched services: ONLINE if any matched service is live, DORMANT if all are offline
994
+ but audited, UNREGISTERED if none have audit records.
995
+
996
+ ---
997
+
998
+ ### PhalaPayload v1.1 Additions
999
+
1000
+ ```typescript
1001
+ interface PhalaPayload {
1002
+ // ... v1.0 fields ...
1003
+ domain: string; // PRM-AMEND-001: explicit domain tag
1004
+ attestation_mode?: AttestationMode; // PRM-AMEND-003: online | dormant | unregistered
1005
+ // rule_id is now guaranteed to be the applied rule — PRM-AMEND-002
1006
+ }
1007
+ ```
1008
+
1009
+ ---
1010
+
917
1011
  *PRAMANA/1.0 — Open Protocol Specification*
918
1012
  *© 2026 PowerPbox IT Solutions Pvt Ltd. Open protocol. Reference implementation Apache 2.0.*
919
1013
  *capt.anil.sharma@powerpbox.org | +91-7506926394*
package/dist/index.d.ts CHANGED
@@ -33,16 +33,24 @@ export declare const SIGNAL: {
33
33
  readonly PHALA: "phala";
34
34
  };
35
35
  export type SignalType = typeof SIGNAL[keyof typeof SIGNAL];
36
+ export declare const ATTESTATION_MODE: {
37
+ readonly ONLINE: "online";
38
+ readonly DORMANT: "dormant";
39
+ readonly UNREGISTERED: "unregistered";
40
+ };
41
+ export type AttestationMode = typeof ATTESTATION_MODE[keyof typeof ATTESTATION_MODE];
36
42
  export interface PhalaPayload {
37
43
  signal_type: 'phala';
38
44
  rule_id: string;
39
45
  applied_by: string;
46
+ domain: string;
40
47
  query_context: string;
41
48
  outcome: 'success' | 'failure' | 'partial';
42
49
  strands_available: StrandType[];
43
50
  strand_missing: StrandType[];
44
51
  authenticity_level: PramanaLevel;
45
52
  rca_triggered: boolean;
53
+ attestation_mode?: AttestationMode;
46
54
  slm_available?: boolean;
47
55
  timestamp: string;
48
56
  }
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,eAAO,MAAM,aAAa;IACxB,4EAA4E;;IAE5E,6EAA6E;;IAE7E,sEAAsE;;IAEtE,6CAA6C;;IAE7C,iEAAiE;;CAEzD,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,OAAO,aAAa,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC;AAE5E,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,YAAY,EAAE,MAAM,CAMtD,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,YAAY,EAAE,MAAM,CAMvD,CAAC;AAIF,eAAO,MAAM,MAAM;;;;CAIT,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,OAAO,MAAM,CAAC,MAAM,OAAO,MAAM,CAAC,CAAC;AAI5D,eAAO,MAAM,MAAM;;;;;CAKT,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,OAAO,MAAM,CAAC,MAAM,OAAO,MAAM,CAAC,CAAC;AAI5D,MAAM,WAAW,YAAY;IAC3B,WAAW,EAAE,OAAO,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,CAAC;IAC3C,iBAAiB,EAAE,UAAU,EAAE,CAAC;IAChC,cAAc,EAAE,UAAU,EAAE,CAAC;IAC7B,kBAAkB,EAAE,YAAY,CAAC;IACjC,aAAa,EAAE,OAAO,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,SAAS,EAAE,MAAM,CAAC;CACnB;AAID,eAAO,MAAM,WAAW;;;;;CAKd,CAAC;AAEX,MAAM,MAAM,cAAc,GAAG,OAAO,WAAW,CAAC,MAAM,OAAO,WAAW,CAAC,CAAC;AAI1E,wBAAgB,eAAe,CAC7B,gBAAgB,EAAE,UAAU,EAAE,EAC9B,YAAY,UAAQ,GACnB,YAAY,CAOd;AAID,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,YAAY,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,eAAe,EAAE,UAAU,EAAE,CAAC;IAC9B,eAAe,EAAE,UAAU,EAAE,CAAC;IAC9B,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,wBAAgB,WAAW,CACzB,gBAAgB,EAAE,UAAU,EAAE,EAC9B,YAAY,UAAQ,EACpB,WAAW,CAAC,EAAE,MAAM,GACnB,kBAAkB,CAapB"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,eAAO,MAAM,aAAa;IACxB,4EAA4E;;IAE5E,6EAA6E;;IAE7E,sEAAsE;;IAEtE,6CAA6C;;IAE7C,iEAAiE;;CAEzD,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,OAAO,aAAa,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC;AAE5E,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,YAAY,EAAE,MAAM,CAMtD,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,YAAY,EAAE,MAAM,CAMvD,CAAC;AAIF,eAAO,MAAM,MAAM;;;;CAIT,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,OAAO,MAAM,CAAC,MAAM,OAAO,MAAM,CAAC,CAAC;AAI5D,eAAO,MAAM,MAAM;;;;;CAKT,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,OAAO,MAAM,CAAC,MAAM,OAAO,MAAM,CAAC,CAAC;AAK5D,eAAO,MAAM,gBAAgB;;;;CAInB,CAAC;AAEX,MAAM,MAAM,eAAe,GAAG,OAAO,gBAAgB,CAAC,MAAM,OAAO,gBAAgB,CAAC,CAAC;AAIrF,MAAM,WAAW,YAAY;IAC3B,WAAW,EAAE,OAAO,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,CAAC;IAC3C,iBAAiB,EAAE,UAAU,EAAE,CAAC;IAChC,cAAc,EAAE,UAAU,EAAE,CAAC;IAC7B,kBAAkB,EAAE,YAAY,CAAC;IACjC,aAAa,EAAE,OAAO,CAAC;IACvB,gBAAgB,CAAC,EAAE,eAAe,CAAC;IACnC,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,SAAS,EAAE,MAAM,CAAC;CACnB;AAID,eAAO,MAAM,WAAW;;;;;CAKd,CAAC;AAEX,MAAM,MAAM,cAAc,GAAG,OAAO,WAAW,CAAC,MAAM,OAAO,WAAW,CAAC,CAAC;AAI1E,wBAAgB,eAAe,CAC7B,gBAAgB,EAAE,UAAU,EAAE,EAC9B,YAAY,UAAQ,GACnB,YAAY,CAOd;AAID,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,YAAY,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,eAAe,EAAE,UAAU,EAAE,CAAC;IAC9B,eAAe,EAAE,UAAU,EAAE,CAAC;IAC9B,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,wBAAgB,WAAW,CACzB,gBAAgB,EAAE,UAAU,EAAE,EAC9B,YAAY,UAAQ,EACpB,WAAW,CAAC,EAAE,MAAM,GACnB,kBAAkB,CAapB"}
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@
7
7
  * License: Apache-2.0
8
8
  */
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
- exports.RCA_FAILURE = exports.SIGNAL = exports.STRAND = exports.PRAMANA_ACTION = exports.PRAMANA_LABEL = exports.PRAMANA_LEVEL = void 0;
10
+ exports.RCA_FAILURE = exports.ATTESTATION_MODE = exports.SIGNAL = exports.STRAND = exports.PRAMANA_ACTION = exports.PRAMANA_LABEL = exports.PRAMANA_LEVEL = void 0;
11
11
  exports.getPramanaLevel = getPramanaLevel;
12
12
  exports.buildMarker = buildMarker;
13
13
  // ── Authenticity Levels ────────────────────────────────────────────────────────
@@ -50,6 +50,13 @@ exports.SIGNAL = {
50
50
  SENSE: 'sense', // What is happening now
51
51
  PHALA: 'phala', // Delivery outcome — returned to source RULE (the novel signal)
52
52
  };
53
+ // ── Attestation Mode (v1.1 — PRM-AMEND-003) ───────────────────────────────────
54
+ // A service can be offline but still attestable — it was audited and can be woken.
55
+ exports.ATTESTATION_MODE = {
56
+ ONLINE: 'online', // Service was online at proof time — strongest
57
+ DORMANT: 'dormant', // Service was audited but currently offline — awakeable via ankr-ctl
58
+ UNREGISTERED: 'unregistered', // No audit record — proof strand cannot attest
59
+ };
53
60
  // ── RCA Failure Types ──────────────────────────────────────────────────────────
54
61
  exports.RCA_FAILURE = {
55
62
  ROUTING: 'routing', // Wrong service received the query
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAqFH,0CAUC;AAaD,kCAiBC;AA3HD,kFAAkF;AAErE,QAAA,aAAa,GAAG;IAC3B,4EAA4E;IAC5E,UAAU,EAAE,CAAC;IACb,6EAA6E;IAC7E,aAAa,EAAE,CAAC;IAChB,sEAAsE;IACtE,iBAAiB,EAAE,CAAC;IACpB,6CAA6C;IAC7C,SAAS,EAAE,CAAC;IACZ,iEAAiE;IACjE,sBAAsB,EAAE,CAAC;CACjB,CAAC;AAIE,QAAA,aAAa,GAAiC;IACzD,CAAC,EAAE,wBAAwB;IAC3B,CAAC,EAAE,2BAA2B;IAC9B,CAAC,EAAE,+BAA+B;IAClC,CAAC,EAAE,uBAAuB;IAC1B,CAAC,EAAE,uCAAuC;CAC3C,CAAC;AAEW,QAAA,cAAc,GAAiC;IAC1D,CAAC,EAAE,mDAAmD;IACtD,CAAC,EAAE,oDAAoD;IACvD,CAAC,EAAE,2DAA2D;IAC9D,CAAC,EAAE,oBAAoB;IACvB,CAAC,EAAE,wCAAwC;CAC5C,CAAC;AAEF,kFAAkF;AAErE,QAAA,MAAM,GAAG;IACpB,UAAU,EAAE,YAAY,EAAI,uDAAuD;IACnF,SAAS,EAAG,WAAW,EAAK,wDAAwD;IACpF,KAAK,EAAO,OAAO,EAAS,2CAA2C;CAC/D,CAAC;AAIX,kFAAkF;AAErE,QAAA,MAAM,GAAG;IACpB,KAAK,EAAG,OAAO,EAAI,oCAAoC;IACvD,KAAK,EAAG,OAAO,EAAI,qBAAqB;IACxC,KAAK,EAAG,OAAO,EAAI,wBAAwB;IAC3C,KAAK,EAAG,OAAO,EAAI,gEAAgE;CAC3E,CAAC;AAoBX,kFAAkF;AAErE,QAAA,WAAW,GAAG;IACzB,OAAO,EAAM,SAAS,EAAO,mCAAmC;IAChE,WAAW,EAAE,aAAa,EAAG,0CAA0C;IACvE,IAAI,EAAS,MAAM,EAAU,mCAAmC;IAChE,OAAO,EAAM,SAAS,EAAO,sCAAsC;CAC3D,CAAC;AAIX,iFAAiF;AAEjF,SAAgB,eAAe,CAC7B,gBAA8B,EAC9B,YAAY,GAAG,KAAK;IAEpB,MAAM,KAAK,GAAG,gBAAgB,CAAC,MAAM,CAAC;IACtC,IAAI,KAAK,KAAK,CAAC;QAAE,OAAO,qBAAa,CAAC,UAAU,CAAC;IACjD,IAAI,KAAK,KAAK,CAAC;QAAE,OAAO,qBAAa,CAAC,aAAa,CAAC;IACpD,IAAI,KAAK,KAAK,CAAC;QAAE,OAAO,qBAAa,CAAC,iBAAiB,CAAC;IACxD,IAAI,KAAK,IAAI,CAAC,IAAI,YAAY;QAAE,OAAO,qBAAa,CAAC,sBAAsB,CAAC;IAC5E,OAAO,qBAAa,CAAC,SAAS,CAAC;AACjC,CAAC;AAaD,SAAgB,WAAW,CACzB,gBAA8B,EAC9B,YAAY,GAAG,KAAK,EACpB,WAAoB;IAEpB,MAAM,KAAK,GAAG,eAAe,CAAC,gBAAgB,EAAE,YAAY,CAAC,CAAC;IAC9D,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,cAAM,CAAiB,CAAC;IACzD,MAAM,OAAO,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;IAEtE,OAAO;QACL,KAAK;QACL,KAAK,EAAE,qBAAa,CAAC,KAAK,CAAC;QAC3B,MAAM,EAAE,sBAAc,CAAC,KAAK,CAAC;QAC7B,eAAe,EAAE,gBAAgB;QACjC,eAAe,EAAE,OAAO;QACxB,GAAG,CAAC,KAAK,GAAG,qBAAa,CAAC,SAAS,IAAI,WAAW,CAAC,CAAC,CAAC,EAAE,WAAW,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;KAC3E,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pramana-protocol",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "PRAMANA/1.0 — A Self-Verifying Cognition Protocol for AI-Native Service Universes. Three strands. Four signals. Five authenticity levels. The PHALA signal closes the loop.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",