@vorionsys/contracts 0.1.1 → 0.1.2
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/CHANGELOG.md +44 -0
- package/LICENSE +190 -0
- package/README.md +373 -84
- package/dist/aci/index.d.ts +3 -69
- package/dist/aci/index.d.ts.map +1 -1
- package/dist/aci/index.js +17 -372
- package/dist/aci/index.js.map +1 -1
- package/dist/canonical/agent.d.ts +1 -1
- package/dist/canonical/agent.d.ts.map +1 -1
- package/dist/car/car-string.d.ts +6 -6
- package/dist/car/effective-permission.d.ts +2 -2
- package/dist/car/identity.d.ts +34 -34
- package/dist/car/jwt-claims.d.ts +126 -126
- package/dist/car/tiers.js +6 -6
- package/dist/db/agents.d.ts +545 -5
- package/dist/db/agents.d.ts.map +1 -1
- package/dist/db/api-keys.d.ts +144 -3
- package/dist/db/api-keys.d.ts.map +1 -1
- package/dist/db/escalations.d.ts +156 -2
- package/dist/db/escalations.d.ts.map +1 -1
- package/dist/db/intents.d.ts +154 -3
- package/dist/db/intents.d.ts.map +1 -1
- package/dist/db/merkle.d.ts +134 -3
- package/dist/db/merkle.d.ts.map +1 -1
- package/dist/db/operations.d.ts +71 -2
- package/dist/db/operations.d.ts.map +1 -1
- package/dist/db/policy-versions.d.ts +38 -1
- package/dist/db/policy-versions.d.ts.map +1 -1
- package/dist/db/proofs.d.ts +119 -3
- package/dist/db/proofs.d.ts.map +1 -1
- package/dist/db/rbac.d.ts +233 -6
- package/dist/db/rbac.d.ts.map +1 -1
- package/dist/db/service-accounts.d.ts +218 -6
- package/dist/db/service-accounts.d.ts.map +1 -1
- package/dist/db/trust.d.ts +168 -2
- package/dist/db/trust.d.ts.map +1 -1
- package/dist/db/webhooks.d.ts +103 -1
- package/dist/db/webhooks.d.ts.map +1 -1
- package/dist/v2/proof-event.d.ts +3 -1
- package/dist/v2/proof-event.d.ts.map +1 -1
- package/dist/validators/proof-event.d.ts +3 -0
- package/dist/validators/proof-event.d.ts.map +1 -1
- package/dist/validators/proof-event.js +2 -1
- package/dist/validators/proof-event.js.map +1 -1
- package/package.json +24 -10
- package/dist/aci/aci-string.d.ts +0 -539
- package/dist/aci/aci-string.d.ts.map +0 -1
- package/dist/aci/aci-string.js +0 -581
- package/dist/aci/aci-string.js.map +0 -1
- package/dist/aci/attestation.d.ts +0 -648
- package/dist/aci/attestation.d.ts.map +0 -1
- package/dist/aci/attestation.js +0 -299
- package/dist/aci/attestation.js.map +0 -1
- package/dist/aci/domains.d.ts +0 -260
- package/dist/aci/domains.d.ts.map +0 -1
- package/dist/aci/domains.js +0 -340
- package/dist/aci/domains.js.map +0 -1
- package/dist/aci/effective-permission.d.ts +0 -371
- package/dist/aci/effective-permission.d.ts.map +0 -1
- package/dist/aci/effective-permission.js +0 -364
- package/dist/aci/effective-permission.js.map +0 -1
- package/dist/aci/identity.d.ts +0 -1100
- package/dist/aci/identity.d.ts.map +0 -1
- package/dist/aci/identity.js +0 -338
- package/dist/aci/identity.js.map +0 -1
- package/dist/aci/jwt-claims.d.ts +0 -756
- package/dist/aci/jwt-claims.d.ts.map +0 -1
- package/dist/aci/jwt-claims.js +0 -345
- package/dist/aci/jwt-claims.js.map +0 -1
- package/dist/aci/levels.d.ts +0 -279
- package/dist/aci/levels.d.ts.map +0 -1
- package/dist/aci/levels.js +0 -486
- package/dist/aci/levels.js.map +0 -1
- package/dist/aci/mapping.d.ts +0 -291
- package/dist/aci/mapping.d.ts.map +0 -1
- package/dist/aci/mapping.js +0 -447
- package/dist/aci/mapping.js.map +0 -1
- package/dist/aci/skills.d.ts +0 -314
- package/dist/aci/skills.d.ts.map +0 -1
- package/dist/aci/skills.js +0 -426
- package/dist/aci/skills.js.map +0 -1
- package/dist/aci/tiers.d.ts +0 -403
- package/dist/aci/tiers.d.ts.map +0 -1
- package/dist/aci/tiers.js +0 -686
- package/dist/aci/tiers.js.map +0 -1
package/dist/aci/index.js
CHANGED
|
@@ -2,381 +2,26 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* @fileoverview ACI Types Module - DEPRECATED
|
|
4
4
|
*
|
|
5
|
-
* @deprecated
|
|
5
|
+
* @deprecated Use '@vorionsys/contracts/car' instead.
|
|
6
6
|
* ACI (Agent Classification Identifier) has been renamed to CAR (Categorical Agent Registry).
|
|
7
|
-
*
|
|
8
|
-
* Migration guide:
|
|
9
|
-
* - Replace imports from '@vorionsys/contracts/aci' with '@vorionsys/contracts/car'
|
|
10
|
-
* - Replace `parseACI` with `parseCAR`
|
|
11
|
-
* - Replace `generateACI` with `generateCAR`
|
|
12
|
-
* - Replace `ACIString` with `CARString`
|
|
13
|
-
*
|
|
14
|
-
* Original description:
|
|
15
|
-
* Comprehensive type definitions and utilities for the Agent Classification
|
|
16
|
-
* Identifier (ACI) specification, integrated with the Vorion Platform.
|
|
17
|
-
*
|
|
18
|
-
* This module provides:
|
|
19
|
-
* - ACI string parsing and generation
|
|
20
|
-
* - Domain codes and bitmask operations
|
|
21
|
-
* - Capability levels (L0-L7)
|
|
22
|
-
* - Certification tiers (external attestation)
|
|
23
|
-
* - Runtime tiers (deployment autonomy)
|
|
24
|
-
* - Attestation types and verification
|
|
25
|
-
* - Agent identity types
|
|
26
|
-
* - JWT claims for OIDC integration
|
|
27
|
-
* - Effective permission calculation
|
|
28
|
-
* - Cross-system mappings
|
|
29
|
-
*
|
|
30
|
-
* @example
|
|
31
|
-
* ```typescript
|
|
32
|
-
* import {
|
|
33
|
-
* parseACI,
|
|
34
|
-
* generateACI,
|
|
35
|
-
* CapabilityLevel,
|
|
36
|
-
* CertificationTier,
|
|
37
|
-
* RuntimeTier,
|
|
38
|
-
* calculateEffectivePermission,
|
|
39
|
-
* } from '@vorionsys/contracts/aci';
|
|
40
|
-
*
|
|
41
|
-
* // Parse an ACI string
|
|
42
|
-
* const parsed = parseACI('a3i.acme-corp.invoice-bot:ABF-L3@1.0.0');
|
|
43
|
-
*
|
|
44
|
-
* // Generate an ACI string (trust is NOT embedded - computed at runtime)
|
|
45
|
-
* const aci = generateACI({
|
|
46
|
-
* registry: 'a3i',
|
|
47
|
-
* organization: 'acme-corp',
|
|
48
|
-
* agentClass: 'invoice-bot',
|
|
49
|
-
* domains: ['A', 'B', 'F'],
|
|
50
|
-
* level: CapabilityLevel.L3_EXECUTE,
|
|
51
|
-
* version: '1.0.0',
|
|
52
|
-
* });
|
|
53
|
-
* // Result: 'a3i.acme-corp.invoice-bot:ABF-L3@1.0.0'
|
|
54
|
-
*
|
|
55
|
-
* // Calculate effective permission
|
|
56
|
-
* const permission = calculateEffectivePermission({
|
|
57
|
-
* certificationTier: CertificationTier.T3_MONITORED,
|
|
58
|
-
* competenceLevel: CapabilityLevel.L4_STANDARD,
|
|
59
|
-
* runtimeTier: RuntimeTier.T3_MONITORED,
|
|
60
|
-
* observabilityCeiling: 4,
|
|
61
|
-
* contextPolicyCeiling: 3,
|
|
62
|
-
* });
|
|
63
|
-
* ```
|
|
7
|
+
* This module re-exports everything from the CAR module for backwards compatibility.
|
|
64
8
|
*
|
|
65
9
|
* @module @vorionsys/contracts/aci
|
|
66
|
-
* @packageDocumentation
|
|
67
10
|
*/
|
|
11
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
14
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
15
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
16
|
+
}
|
|
17
|
+
Object.defineProperty(o, k2, desc);
|
|
18
|
+
}) : (function(o, m, k, k2) {
|
|
19
|
+
if (k2 === undefined) k2 = k;
|
|
20
|
+
o[k2] = m[k];
|
|
21
|
+
}));
|
|
22
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
23
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
24
|
+
};
|
|
68
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
69
|
-
|
|
70
|
-
exports.scoreToRuntimeTier = exports.scoreToCertificationTier = exports.compareRuntimeTiers = exports.meetsRuntimeTier = exports.isRuntimeTierHigher = exports.compareCertificationTiers = exports.meetsCertificationTier = exports.isCertificationTierHigher = exports.RUNTIME_TIER_CONFIGS = exports.CERTIFICATION_TIER_CONFIGS = exports.RUNTIME_TIER_SCORES = exports.CERTIFICATION_TIER_SCORES = exports.RUNTIME_TIER_DESCRIPTIONS = exports.CERTIFICATION_TIER_DESCRIPTIONS = exports.RUNTIME_TIER_NAMES = exports.CERTIFICATION_TIER_NAMES = exports.RUNTIME_TIERS = exports.CERTIFICATION_TIERS = exports.RuntimeTier = exports.CertificationTier = exports.levelStringSchema = exports.capabilityLevelConfigSchema = exports.capabilityLevelSchema = exports.isCapabilityLevel = exports.tryParseLevel = exports.parseLevel = exports.canOperateAutonomously = exports.requiresApproval = exports.hasAbility = exports.getLevelDescription = exports.getLevelCode = exports.getLevelName = exports.getLevelConfig = exports.clampLevel = exports.maxLevel = exports.minLevel = exports.compareLevels = exports.meetsLevel = exports.isLevelHigher = exports.CAPABILITY_LEVEL_CONFIGS = exports.CAPABILITY_LEVEL_ABILITIES = exports.CAPABILITY_LEVEL_DESCRIPTIONS = exports.CAPABILITY_LEVEL_CODES = exports.CAPABILITY_LEVEL_NAMES = exports.CAPABILITY_LEVELS = exports.CapabilityLevel = exports.skillStringSchema = exports.skillBitmaskSchema = exports.skillCodeArraySchema = exports.skillDefinitionSchema = void 0;
|
|
71
|
-
exports.ATTESTATION_SCOPE_DESCRIPTIONS = exports.ATTESTATION_SCOPES = exports.aciValidationResultSchema = exports.aciValidationWarningSchema = exports.aciValidationErrorSchema = exports.generateACIOptionsSchema = exports.aciSchema = exports.aciStringSchema = exports.parsedACISchema = exports.getACIIdentity = exports.incrementACIVersion = exports.removeACIExtensions = exports.addACIExtensions = exports.updateACI = exports.isACIString = exports.isValidACI = exports.validateACI = exports.generateACIString = exports.generateACI = exports.safeParseACI = exports.tryParseACI = exports.parseLegacyACI = exports.parseACI = exports.ACIParseError = exports.ACI_LEGACY_REGEX = exports.ACI_PARTIAL_REGEX = exports.ACI_REGEX = exports.runtimeTierStringSchema = exports.certificationTierStringSchema = exports.tierStringSchema = exports.runtimeTierConfigSchema = exports.certificationTierConfigSchema = exports.runtimeTierSchema = exports.certificationTierSchema = exports.isRuntimeTier = exports.isCertificationTier = exports.parseRuntimeTier = exports.parseCertificationTier = exports.getRuntimeTierDescription = exports.getCertificationTierDescription = exports.getRuntimeTierName = exports.getCertificationTierName = exports.getRuntimeTierConfig = exports.getCertificationTierConfig = exports.getRuntimeTierMaxScore = exports.getRuntimeTierMinScore = exports.getCertificationTierMaxScore = exports.getCertificationTierMinScore = exports.runtimeTierToScore = exports.certificationTierToScore = void 0;
|
|
72
|
-
exports.calculateRequiredChanges = exports.modifyContextCeiling = exports.checkPermission = exports.contextAllowsLevel = exports.permissionAllowsLevel = exports.calculateEffectivePermission = exports.jwtClaimsValidationResultSchema = exports.jwtClaimsValidationErrorSchema = exports.jwtClaimsValidationOptionsSchema = exports.aciJWTClaimsSchema = exports.aciConstraintsClaimSchema = exports.aciAttestationClaimSchema = exports.standardJWTClaimsSchema = exports.claimsMeetRequirements = exports.claimsHaveDomain = exports.extractIdentityFromClaims = exports.extractCapabilityFromClaims = exports.validateJWTClaims = exports.generateMinimalJWTClaims = exports.generateJWTClaims = exports.agentMatchCriteriaSchema = exports.agentRegistrationOptionsSchema = exports.agentIdentitySummarySchema = exports.agentIdentitySchema = exports.serviceEndpointSchema = exports.verificationMethodSchema = exports.agentMetadataSchema = exports.capabilityVectorSchema = exports.isAgentIdentitySummary = exports.isAgentIdentity = exports.isCapabilityVector = exports.capabilityVectorSatisfies = exports.matchesAgentCriteria = exports.toAgentIdentitySummary = exports.createAgentIdentity = exports.attestationVerificationResultSchema = exports.attestationVerificationWarningSchema = exports.attestationVerificationErrorSchema = exports.attestationSchema = exports.attestationProofSchema = exports.attestationEvidenceSchema = exports.attestationStatusSchema = exports.attestationScopeSchema = exports.isAttestationStatus = exports.isAttestationScope = exports.attestationCoversDomain = exports.getAttestationRemainingValidity = exports.isAttestationValid = exports.verifyAttestation = exports.createAttestation = void 0;
|
|
73
|
-
exports.domainMappingResultSchema = exports.tierMappingResultSchema = exports.vorionNamespaceSchema = exports.trustBandSchema = exports.isTrustBand = exports.isVorionNamespace = exports.createBidirectionalMap = exports.capabilityLevelToMinRuntimeTier = exports.capabilityLevelToAutonomyDescription = exports.vorionNamespacesToAciDomains = exports.aciDomainsToVorionNamespaces = exports.vorionNamespaceToAciDomain = exports.aciDomainToVorionNamespace = exports.normalizeScoreBetweenScales = exports.scoreToBothTiers = exports.runtimeTierToTrustBand = exports.certificationTierToTrustBand = exports.trustBandToRuntimeTier = exports.trustBandToCertificationTier = exports.runtimeTierToCertificationTier = exports.certificationTierToRuntimeTier = exports.certificationRuntimeMap = exports.domainNamespaceMap = exports.RUNTIME_TO_CERTIFICATION_TIER_MAP = exports.CERTIFICATION_TO_RUNTIME_TIER_MAP = exports.NAMESPACE_TO_DOMAIN_MAP = exports.DOMAIN_TO_NAMESPACE_MAP = exports.VORION_NAMESPACES = exports.TrustBand = exports.permissionCheckResultSchema = exports.effectivePermissionSchema = exports.permissionCeilingsSchema = exports.constrainingFactorSchema = exports.effectivePermissionContextSchema = exports.isEffectivePermission = exports.isEffectivePermissionContext = exports.createMaxPermissionContext = exports.createDefaultContext = void 0;
|
|
74
|
-
// ============================================================================
|
|
75
|
-
// Domain Codes and Bitmask
|
|
76
|
-
// ============================================================================
|
|
77
|
-
var domains_js_1 = require("./domains.js");
|
|
78
|
-
// Constants
|
|
79
|
-
Object.defineProperty(exports, "DOMAIN_CODES", { enumerable: true, get: function () { return domains_js_1.DOMAIN_CODES; } });
|
|
80
|
-
Object.defineProperty(exports, "CAPABILITY_DOMAINS", { enumerable: true, get: function () { return domains_js_1.CAPABILITY_DOMAINS; } });
|
|
81
|
-
Object.defineProperty(exports, "DOMAIN_NAMES", { enumerable: true, get: function () { return domains_js_1.DOMAIN_NAMES; } });
|
|
82
|
-
Object.defineProperty(exports, "ALL_DOMAINS_BITMASK", { enumerable: true, get: function () { return domains_js_1.ALL_DOMAINS_BITMASK; } });
|
|
83
|
-
// Functions
|
|
84
|
-
Object.defineProperty(exports, "encodeDomains", { enumerable: true, get: function () { return domains_js_1.encodeDomains; } });
|
|
85
|
-
Object.defineProperty(exports, "decodeDomains", { enumerable: true, get: function () { return domains_js_1.decodeDomains; } });
|
|
86
|
-
Object.defineProperty(exports, "parseDomainString", { enumerable: true, get: function () { return domains_js_1.parseDomainString; } });
|
|
87
|
-
Object.defineProperty(exports, "formatDomainString", { enumerable: true, get: function () { return domains_js_1.formatDomainString; } });
|
|
88
|
-
Object.defineProperty(exports, "hasDomains", { enumerable: true, get: function () { return domains_js_1.hasDomains; } });
|
|
89
|
-
Object.defineProperty(exports, "satisfiesDomainRequirements", { enumerable: true, get: function () { return domains_js_1.satisfiesDomainRequirements; } });
|
|
90
|
-
Object.defineProperty(exports, "intersectDomains", { enumerable: true, get: function () { return domains_js_1.intersectDomains; } });
|
|
91
|
-
Object.defineProperty(exports, "unionDomains", { enumerable: true, get: function () { return domains_js_1.unionDomains; } });
|
|
92
|
-
Object.defineProperty(exports, "differenceDomains", { enumerable: true, get: function () { return domains_js_1.differenceDomains; } });
|
|
93
|
-
Object.defineProperty(exports, "getDomainDefinition", { enumerable: true, get: function () { return domains_js_1.getDomainDefinition; } });
|
|
94
|
-
Object.defineProperty(exports, "getDomainName", { enumerable: true, get: function () { return domains_js_1.getDomainName; } });
|
|
95
|
-
Object.defineProperty(exports, "getDomainBit", { enumerable: true, get: function () { return domains_js_1.getDomainBit; } });
|
|
96
|
-
Object.defineProperty(exports, "countDomains", { enumerable: true, get: function () { return domains_js_1.countDomains; } });
|
|
97
|
-
Object.defineProperty(exports, "isDomainCode", { enumerable: true, get: function () { return domains_js_1.isDomainCode; } });
|
|
98
|
-
Object.defineProperty(exports, "isDomainCodeArray", { enumerable: true, get: function () { return domains_js_1.isDomainCodeArray; } });
|
|
99
|
-
// Zod Schemas
|
|
100
|
-
Object.defineProperty(exports, "domainCodeSchema", { enumerable: true, get: function () { return domains_js_1.domainCodeSchema; } });
|
|
101
|
-
Object.defineProperty(exports, "domainDefinitionSchema", { enumerable: true, get: function () { return domains_js_1.domainDefinitionSchema; } });
|
|
102
|
-
Object.defineProperty(exports, "domainCodeArraySchema", { enumerable: true, get: function () { return domains_js_1.domainCodeArraySchema; } });
|
|
103
|
-
Object.defineProperty(exports, "domainBitmaskSchema", { enumerable: true, get: function () { return domains_js_1.domainBitmaskSchema; } });
|
|
104
|
-
Object.defineProperty(exports, "domainStringSchema", { enumerable: true, get: function () { return domains_js_1.domainStringSchema; } });
|
|
105
|
-
// ============================================================================
|
|
106
|
-
// Skill Codes and Bitmask
|
|
107
|
-
// ============================================================================
|
|
108
|
-
var skills_js_1 = require("./skills.js");
|
|
109
|
-
// Constants
|
|
110
|
-
Object.defineProperty(exports, "SKILL_CODES", { enumerable: true, get: function () { return skills_js_1.SKILL_CODES; } });
|
|
111
|
-
Object.defineProperty(exports, "SKILL_DEFINITIONS", { enumerable: true, get: function () { return skills_js_1.SKILL_DEFINITIONS; } });
|
|
112
|
-
Object.defineProperty(exports, "SKILL_NAMES", { enumerable: true, get: function () { return skills_js_1.SKILL_NAMES; } });
|
|
113
|
-
Object.defineProperty(exports, "ALL_SKILLS_BITMASK", { enumerable: true, get: function () { return skills_js_1.ALL_SKILLS_BITMASK; } });
|
|
114
|
-
Object.defineProperty(exports, "SKILLS_BY_CATEGORY", { enumerable: true, get: function () { return skills_js_1.SKILLS_BY_CATEGORY; } });
|
|
115
|
-
Object.defineProperty(exports, "LEGACY_ID_TO_SKILL", { enumerable: true, get: function () { return skills_js_1.LEGACY_ID_TO_SKILL; } });
|
|
116
|
-
// Functions
|
|
117
|
-
Object.defineProperty(exports, "encodeSkills", { enumerable: true, get: function () { return skills_js_1.encodeSkills; } });
|
|
118
|
-
Object.defineProperty(exports, "decodeSkills", { enumerable: true, get: function () { return skills_js_1.decodeSkills; } });
|
|
119
|
-
Object.defineProperty(exports, "parseSkillString", { enumerable: true, get: function () { return skills_js_1.parseSkillString; } });
|
|
120
|
-
Object.defineProperty(exports, "formatSkillString", { enumerable: true, get: function () { return skills_js_1.formatSkillString; } });
|
|
121
|
-
Object.defineProperty(exports, "hasSkills", { enumerable: true, get: function () { return skills_js_1.hasSkills; } });
|
|
122
|
-
Object.defineProperty(exports, "satisfiesSkillRequirements", { enumerable: true, get: function () { return skills_js_1.satisfiesSkillRequirements; } });
|
|
123
|
-
Object.defineProperty(exports, "intersectSkills", { enumerable: true, get: function () { return skills_js_1.intersectSkills; } });
|
|
124
|
-
Object.defineProperty(exports, "unionSkills", { enumerable: true, get: function () { return skills_js_1.unionSkills; } });
|
|
125
|
-
Object.defineProperty(exports, "differenceSkills", { enumerable: true, get: function () { return skills_js_1.differenceSkills; } });
|
|
126
|
-
Object.defineProperty(exports, "getSkillDefinition", { enumerable: true, get: function () { return skills_js_1.getSkillDefinition; } });
|
|
127
|
-
Object.defineProperty(exports, "getSkillName", { enumerable: true, get: function () { return skills_js_1.getSkillName; } });
|
|
128
|
-
Object.defineProperty(exports, "getSkillBit", { enumerable: true, get: function () { return skills_js_1.getSkillBit; } });
|
|
129
|
-
Object.defineProperty(exports, "getSkillCategory", { enumerable: true, get: function () { return skills_js_1.getSkillCategory; } });
|
|
130
|
-
Object.defineProperty(exports, "getSkillsInCategory", { enumerable: true, get: function () { return skills_js_1.getSkillsInCategory; } });
|
|
131
|
-
Object.defineProperty(exports, "countSkills", { enumerable: true, get: function () { return skills_js_1.countSkills; } });
|
|
132
|
-
Object.defineProperty(exports, "isSkillCode", { enumerable: true, get: function () { return skills_js_1.isSkillCode; } });
|
|
133
|
-
Object.defineProperty(exports, "isSkillCodeArray", { enumerable: true, get: function () { return skills_js_1.isSkillCodeArray; } });
|
|
134
|
-
Object.defineProperty(exports, "legacyIdToSkillCode", { enumerable: true, get: function () { return skills_js_1.legacyIdToSkillCode; } });
|
|
135
|
-
Object.defineProperty(exports, "legacyIdsToSkillCodes", { enumerable: true, get: function () { return skills_js_1.legacyIdsToSkillCodes; } });
|
|
136
|
-
// Zod Schemas
|
|
137
|
-
Object.defineProperty(exports, "skillCodeSchema", { enumerable: true, get: function () { return skills_js_1.skillCodeSchema; } });
|
|
138
|
-
Object.defineProperty(exports, "skillDefinitionSchema", { enumerable: true, get: function () { return skills_js_1.skillDefinitionSchema; } });
|
|
139
|
-
Object.defineProperty(exports, "skillCodeArraySchema", { enumerable: true, get: function () { return skills_js_1.skillCodeArraySchema; } });
|
|
140
|
-
Object.defineProperty(exports, "skillBitmaskSchema", { enumerable: true, get: function () { return skills_js_1.skillBitmaskSchema; } });
|
|
141
|
-
Object.defineProperty(exports, "skillStringSchema", { enumerable: true, get: function () { return skills_js_1.skillStringSchema; } });
|
|
142
|
-
// ============================================================================
|
|
143
|
-
// Capability Levels (L0-L7)
|
|
144
|
-
// ============================================================================
|
|
145
|
-
var levels_js_1 = require("./levels.js");
|
|
146
|
-
// Types/Enums
|
|
147
|
-
Object.defineProperty(exports, "CapabilityLevel", { enumerable: true, get: function () { return levels_js_1.CapabilityLevel; } });
|
|
148
|
-
// Constants
|
|
149
|
-
Object.defineProperty(exports, "CAPABILITY_LEVELS", { enumerable: true, get: function () { return levels_js_1.CAPABILITY_LEVELS; } });
|
|
150
|
-
Object.defineProperty(exports, "CAPABILITY_LEVEL_NAMES", { enumerable: true, get: function () { return levels_js_1.CAPABILITY_LEVEL_NAMES; } });
|
|
151
|
-
Object.defineProperty(exports, "CAPABILITY_LEVEL_CODES", { enumerable: true, get: function () { return levels_js_1.CAPABILITY_LEVEL_CODES; } });
|
|
152
|
-
Object.defineProperty(exports, "CAPABILITY_LEVEL_DESCRIPTIONS", { enumerable: true, get: function () { return levels_js_1.CAPABILITY_LEVEL_DESCRIPTIONS; } });
|
|
153
|
-
Object.defineProperty(exports, "CAPABILITY_LEVEL_ABILITIES", { enumerable: true, get: function () { return levels_js_1.CAPABILITY_LEVEL_ABILITIES; } });
|
|
154
|
-
Object.defineProperty(exports, "CAPABILITY_LEVEL_CONFIGS", { enumerable: true, get: function () { return levels_js_1.CAPABILITY_LEVEL_CONFIGS; } });
|
|
155
|
-
// Functions
|
|
156
|
-
Object.defineProperty(exports, "isLevelHigher", { enumerable: true, get: function () { return levels_js_1.isLevelHigher; } });
|
|
157
|
-
Object.defineProperty(exports, "meetsLevel", { enumerable: true, get: function () { return levels_js_1.meetsLevel; } });
|
|
158
|
-
Object.defineProperty(exports, "compareLevels", { enumerable: true, get: function () { return levels_js_1.compareLevels; } });
|
|
159
|
-
Object.defineProperty(exports, "minLevel", { enumerable: true, get: function () { return levels_js_1.minLevel; } });
|
|
160
|
-
Object.defineProperty(exports, "maxLevel", { enumerable: true, get: function () { return levels_js_1.maxLevel; } });
|
|
161
|
-
Object.defineProperty(exports, "clampLevel", { enumerable: true, get: function () { return levels_js_1.clampLevel; } });
|
|
162
|
-
Object.defineProperty(exports, "getLevelConfig", { enumerable: true, get: function () { return levels_js_1.getLevelConfig; } });
|
|
163
|
-
Object.defineProperty(exports, "getLevelName", { enumerable: true, get: function () { return levels_js_1.getLevelName; } });
|
|
164
|
-
Object.defineProperty(exports, "getLevelCode", { enumerable: true, get: function () { return levels_js_1.getLevelCode; } });
|
|
165
|
-
Object.defineProperty(exports, "getLevelDescription", { enumerable: true, get: function () { return levels_js_1.getLevelDescription; } });
|
|
166
|
-
Object.defineProperty(exports, "hasAbility", { enumerable: true, get: function () { return levels_js_1.hasAbility; } });
|
|
167
|
-
Object.defineProperty(exports, "requiresApproval", { enumerable: true, get: function () { return levels_js_1.requiresApproval; } });
|
|
168
|
-
Object.defineProperty(exports, "canOperateAutonomously", { enumerable: true, get: function () { return levels_js_1.canOperateAutonomously; } });
|
|
169
|
-
Object.defineProperty(exports, "parseLevel", { enumerable: true, get: function () { return levels_js_1.parseLevel; } });
|
|
170
|
-
Object.defineProperty(exports, "tryParseLevel", { enumerable: true, get: function () { return levels_js_1.tryParseLevel; } });
|
|
171
|
-
Object.defineProperty(exports, "isCapabilityLevel", { enumerable: true, get: function () { return levels_js_1.isCapabilityLevel; } });
|
|
172
|
-
// Zod Schemas
|
|
173
|
-
Object.defineProperty(exports, "capabilityLevelSchema", { enumerable: true, get: function () { return levels_js_1.capabilityLevelSchema; } });
|
|
174
|
-
Object.defineProperty(exports, "capabilityLevelConfigSchema", { enumerable: true, get: function () { return levels_js_1.capabilityLevelConfigSchema; } });
|
|
175
|
-
Object.defineProperty(exports, "levelStringSchema", { enumerable: true, get: function () { return levels_js_1.levelStringSchema; } });
|
|
176
|
-
// ============================================================================
|
|
177
|
-
// Certification and Runtime Tiers (T0-T7)
|
|
178
|
-
// ============================================================================
|
|
179
|
-
var tiers_js_1 = require("./tiers.js");
|
|
180
|
-
// Types/Enums
|
|
181
|
-
Object.defineProperty(exports, "CertificationTier", { enumerable: true, get: function () { return tiers_js_1.CertificationTier; } });
|
|
182
|
-
Object.defineProperty(exports, "RuntimeTier", { enumerable: true, get: function () { return tiers_js_1.RuntimeTier; } });
|
|
183
|
-
// Constants
|
|
184
|
-
Object.defineProperty(exports, "CERTIFICATION_TIERS", { enumerable: true, get: function () { return tiers_js_1.CERTIFICATION_TIERS; } });
|
|
185
|
-
Object.defineProperty(exports, "RUNTIME_TIERS", { enumerable: true, get: function () { return tiers_js_1.RUNTIME_TIERS; } });
|
|
186
|
-
Object.defineProperty(exports, "CERTIFICATION_TIER_NAMES", { enumerable: true, get: function () { return tiers_js_1.CERTIFICATION_TIER_NAMES; } });
|
|
187
|
-
Object.defineProperty(exports, "RUNTIME_TIER_NAMES", { enumerable: true, get: function () { return tiers_js_1.RUNTIME_TIER_NAMES; } });
|
|
188
|
-
Object.defineProperty(exports, "CERTIFICATION_TIER_DESCRIPTIONS", { enumerable: true, get: function () { return tiers_js_1.CERTIFICATION_TIER_DESCRIPTIONS; } });
|
|
189
|
-
Object.defineProperty(exports, "RUNTIME_TIER_DESCRIPTIONS", { enumerable: true, get: function () { return tiers_js_1.RUNTIME_TIER_DESCRIPTIONS; } });
|
|
190
|
-
Object.defineProperty(exports, "CERTIFICATION_TIER_SCORES", { enumerable: true, get: function () { return tiers_js_1.CERTIFICATION_TIER_SCORES; } });
|
|
191
|
-
Object.defineProperty(exports, "RUNTIME_TIER_SCORES", { enumerable: true, get: function () { return tiers_js_1.RUNTIME_TIER_SCORES; } });
|
|
192
|
-
Object.defineProperty(exports, "CERTIFICATION_TIER_CONFIGS", { enumerable: true, get: function () { return tiers_js_1.CERTIFICATION_TIER_CONFIGS; } });
|
|
193
|
-
Object.defineProperty(exports, "RUNTIME_TIER_CONFIGS", { enumerable: true, get: function () { return tiers_js_1.RUNTIME_TIER_CONFIGS; } });
|
|
194
|
-
// Functions
|
|
195
|
-
Object.defineProperty(exports, "isCertificationTierHigher", { enumerable: true, get: function () { return tiers_js_1.isCertificationTierHigher; } });
|
|
196
|
-
Object.defineProperty(exports, "meetsCertificationTier", { enumerable: true, get: function () { return tiers_js_1.meetsCertificationTier; } });
|
|
197
|
-
Object.defineProperty(exports, "compareCertificationTiers", { enumerable: true, get: function () { return tiers_js_1.compareCertificationTiers; } });
|
|
198
|
-
Object.defineProperty(exports, "isRuntimeTierHigher", { enumerable: true, get: function () { return tiers_js_1.isRuntimeTierHigher; } });
|
|
199
|
-
Object.defineProperty(exports, "meetsRuntimeTier", { enumerable: true, get: function () { return tiers_js_1.meetsRuntimeTier; } });
|
|
200
|
-
Object.defineProperty(exports, "compareRuntimeTiers", { enumerable: true, get: function () { return tiers_js_1.compareRuntimeTiers; } });
|
|
201
|
-
Object.defineProperty(exports, "scoreToCertificationTier", { enumerable: true, get: function () { return tiers_js_1.scoreToCertificationTier; } });
|
|
202
|
-
Object.defineProperty(exports, "scoreToRuntimeTier", { enumerable: true, get: function () { return tiers_js_1.scoreToRuntimeTier; } });
|
|
203
|
-
Object.defineProperty(exports, "certificationTierToScore", { enumerable: true, get: function () { return tiers_js_1.certificationTierToScore; } });
|
|
204
|
-
Object.defineProperty(exports, "runtimeTierToScore", { enumerable: true, get: function () { return tiers_js_1.runtimeTierToScore; } });
|
|
205
|
-
Object.defineProperty(exports, "getCertificationTierMinScore", { enumerable: true, get: function () { return tiers_js_1.getCertificationTierMinScore; } });
|
|
206
|
-
Object.defineProperty(exports, "getCertificationTierMaxScore", { enumerable: true, get: function () { return tiers_js_1.getCertificationTierMaxScore; } });
|
|
207
|
-
Object.defineProperty(exports, "getRuntimeTierMinScore", { enumerable: true, get: function () { return tiers_js_1.getRuntimeTierMinScore; } });
|
|
208
|
-
Object.defineProperty(exports, "getRuntimeTierMaxScore", { enumerable: true, get: function () { return tiers_js_1.getRuntimeTierMaxScore; } });
|
|
209
|
-
Object.defineProperty(exports, "getCertificationTierConfig", { enumerable: true, get: function () { return tiers_js_1.getCertificationTierConfig; } });
|
|
210
|
-
Object.defineProperty(exports, "getRuntimeTierConfig", { enumerable: true, get: function () { return tiers_js_1.getRuntimeTierConfig; } });
|
|
211
|
-
Object.defineProperty(exports, "getCertificationTierName", { enumerable: true, get: function () { return tiers_js_1.getCertificationTierName; } });
|
|
212
|
-
Object.defineProperty(exports, "getRuntimeTierName", { enumerable: true, get: function () { return tiers_js_1.getRuntimeTierName; } });
|
|
213
|
-
Object.defineProperty(exports, "getCertificationTierDescription", { enumerable: true, get: function () { return tiers_js_1.getCertificationTierDescription; } });
|
|
214
|
-
Object.defineProperty(exports, "getRuntimeTierDescription", { enumerable: true, get: function () { return tiers_js_1.getRuntimeTierDescription; } });
|
|
215
|
-
Object.defineProperty(exports, "parseCertificationTier", { enumerable: true, get: function () { return tiers_js_1.parseCertificationTier; } });
|
|
216
|
-
Object.defineProperty(exports, "parseRuntimeTier", { enumerable: true, get: function () { return tiers_js_1.parseRuntimeTier; } });
|
|
217
|
-
Object.defineProperty(exports, "isCertificationTier", { enumerable: true, get: function () { return tiers_js_1.isCertificationTier; } });
|
|
218
|
-
Object.defineProperty(exports, "isRuntimeTier", { enumerable: true, get: function () { return tiers_js_1.isRuntimeTier; } });
|
|
219
|
-
// Zod Schemas
|
|
220
|
-
Object.defineProperty(exports, "certificationTierSchema", { enumerable: true, get: function () { return tiers_js_1.certificationTierSchema; } });
|
|
221
|
-
Object.defineProperty(exports, "runtimeTierSchema", { enumerable: true, get: function () { return tiers_js_1.runtimeTierSchema; } });
|
|
222
|
-
Object.defineProperty(exports, "certificationTierConfigSchema", { enumerable: true, get: function () { return tiers_js_1.certificationTierConfigSchema; } });
|
|
223
|
-
Object.defineProperty(exports, "runtimeTierConfigSchema", { enumerable: true, get: function () { return tiers_js_1.runtimeTierConfigSchema; } });
|
|
224
|
-
Object.defineProperty(exports, "tierStringSchema", { enumerable: true, get: function () { return tiers_js_1.tierStringSchema; } });
|
|
225
|
-
Object.defineProperty(exports, "certificationTierStringSchema", { enumerable: true, get: function () { return tiers_js_1.certificationTierStringSchema; } });
|
|
226
|
-
Object.defineProperty(exports, "runtimeTierStringSchema", { enumerable: true, get: function () { return tiers_js_1.runtimeTierStringSchema; } });
|
|
227
|
-
// ============================================================================
|
|
228
|
-
// ACI String Parser and Generator
|
|
229
|
-
// ============================================================================
|
|
230
|
-
var aci_string_js_1 = require("./aci-string.js");
|
|
231
|
-
// Constants
|
|
232
|
-
Object.defineProperty(exports, "ACI_REGEX", { enumerable: true, get: function () { return aci_string_js_1.ACI_REGEX; } });
|
|
233
|
-
Object.defineProperty(exports, "ACI_PARTIAL_REGEX", { enumerable: true, get: function () { return aci_string_js_1.ACI_PARTIAL_REGEX; } });
|
|
234
|
-
Object.defineProperty(exports, "ACI_LEGACY_REGEX", { enumerable: true, get: function () { return aci_string_js_1.ACI_LEGACY_REGEX; } });
|
|
235
|
-
// Classes
|
|
236
|
-
Object.defineProperty(exports, "ACIParseError", { enumerable: true, get: function () { return aci_string_js_1.ACIParseError; } });
|
|
237
|
-
// Functions
|
|
238
|
-
Object.defineProperty(exports, "parseACI", { enumerable: true, get: function () { return aci_string_js_1.parseACI; } });
|
|
239
|
-
Object.defineProperty(exports, "parseLegacyACI", { enumerable: true, get: function () { return aci_string_js_1.parseLegacyACI; } });
|
|
240
|
-
Object.defineProperty(exports, "tryParseACI", { enumerable: true, get: function () { return aci_string_js_1.tryParseACI; } });
|
|
241
|
-
Object.defineProperty(exports, "safeParseACI", { enumerable: true, get: function () { return aci_string_js_1.safeParseACI; } });
|
|
242
|
-
Object.defineProperty(exports, "generateACI", { enumerable: true, get: function () { return aci_string_js_1.generateACI; } });
|
|
243
|
-
Object.defineProperty(exports, "generateACIString", { enumerable: true, get: function () { return aci_string_js_1.generateACIString; } });
|
|
244
|
-
Object.defineProperty(exports, "validateACI", { enumerable: true, get: function () { return aci_string_js_1.validateACI; } });
|
|
245
|
-
Object.defineProperty(exports, "isValidACI", { enumerable: true, get: function () { return aci_string_js_1.isValidACI; } });
|
|
246
|
-
Object.defineProperty(exports, "isACIString", { enumerable: true, get: function () { return aci_string_js_1.isACIString; } });
|
|
247
|
-
Object.defineProperty(exports, "updateACI", { enumerable: true, get: function () { return aci_string_js_1.updateACI; } });
|
|
248
|
-
Object.defineProperty(exports, "addACIExtensions", { enumerable: true, get: function () { return aci_string_js_1.addACIExtensions; } });
|
|
249
|
-
Object.defineProperty(exports, "removeACIExtensions", { enumerable: true, get: function () { return aci_string_js_1.removeACIExtensions; } });
|
|
250
|
-
Object.defineProperty(exports, "incrementACIVersion", { enumerable: true, get: function () { return aci_string_js_1.incrementACIVersion; } });
|
|
251
|
-
Object.defineProperty(exports, "getACIIdentity", { enumerable: true, get: function () { return aci_string_js_1.getACIIdentity; } });
|
|
252
|
-
// Zod Schemas
|
|
253
|
-
Object.defineProperty(exports, "parsedACISchema", { enumerable: true, get: function () { return aci_string_js_1.parsedACISchema; } });
|
|
254
|
-
Object.defineProperty(exports, "aciStringSchema", { enumerable: true, get: function () { return aci_string_js_1.aciStringSchema; } });
|
|
255
|
-
Object.defineProperty(exports, "aciSchema", { enumerable: true, get: function () { return aci_string_js_1.aciSchema; } });
|
|
256
|
-
Object.defineProperty(exports, "generateACIOptionsSchema", { enumerable: true, get: function () { return aci_string_js_1.generateACIOptionsSchema; } });
|
|
257
|
-
Object.defineProperty(exports, "aciValidationErrorSchema", { enumerable: true, get: function () { return aci_string_js_1.aciValidationErrorSchema; } });
|
|
258
|
-
Object.defineProperty(exports, "aciValidationWarningSchema", { enumerable: true, get: function () { return aci_string_js_1.aciValidationWarningSchema; } });
|
|
259
|
-
Object.defineProperty(exports, "aciValidationResultSchema", { enumerable: true, get: function () { return aci_string_js_1.aciValidationResultSchema; } });
|
|
260
|
-
// ============================================================================
|
|
261
|
-
// Attestation Types
|
|
262
|
-
// ============================================================================
|
|
263
|
-
var attestation_js_1 = require("./attestation.js");
|
|
264
|
-
// Constants
|
|
265
|
-
Object.defineProperty(exports, "ATTESTATION_SCOPES", { enumerable: true, get: function () { return attestation_js_1.ATTESTATION_SCOPES; } });
|
|
266
|
-
Object.defineProperty(exports, "ATTESTATION_SCOPE_DESCRIPTIONS", { enumerable: true, get: function () { return attestation_js_1.ATTESTATION_SCOPE_DESCRIPTIONS; } });
|
|
267
|
-
// Functions
|
|
268
|
-
Object.defineProperty(exports, "createAttestation", { enumerable: true, get: function () { return attestation_js_1.createAttestation; } });
|
|
269
|
-
Object.defineProperty(exports, "verifyAttestation", { enumerable: true, get: function () { return attestation_js_1.verifyAttestation; } });
|
|
270
|
-
Object.defineProperty(exports, "isAttestationValid", { enumerable: true, get: function () { return attestation_js_1.isAttestationValid; } });
|
|
271
|
-
Object.defineProperty(exports, "getAttestationRemainingValidity", { enumerable: true, get: function () { return attestation_js_1.getAttestationRemainingValidity; } });
|
|
272
|
-
Object.defineProperty(exports, "attestationCoversDomain", { enumerable: true, get: function () { return attestation_js_1.attestationCoversDomain; } });
|
|
273
|
-
Object.defineProperty(exports, "isAttestationScope", { enumerable: true, get: function () { return attestation_js_1.isAttestationScope; } });
|
|
274
|
-
Object.defineProperty(exports, "isAttestationStatus", { enumerable: true, get: function () { return attestation_js_1.isAttestationStatus; } });
|
|
275
|
-
// Zod Schemas
|
|
276
|
-
Object.defineProperty(exports, "attestationScopeSchema", { enumerable: true, get: function () { return attestation_js_1.attestationScopeSchema; } });
|
|
277
|
-
Object.defineProperty(exports, "attestationStatusSchema", { enumerable: true, get: function () { return attestation_js_1.attestationStatusSchema; } });
|
|
278
|
-
Object.defineProperty(exports, "attestationEvidenceSchema", { enumerable: true, get: function () { return attestation_js_1.attestationEvidenceSchema; } });
|
|
279
|
-
Object.defineProperty(exports, "attestationProofSchema", { enumerable: true, get: function () { return attestation_js_1.attestationProofSchema; } });
|
|
280
|
-
Object.defineProperty(exports, "attestationSchema", { enumerable: true, get: function () { return attestation_js_1.attestationSchema; } });
|
|
281
|
-
Object.defineProperty(exports, "attestationVerificationErrorSchema", { enumerable: true, get: function () { return attestation_js_1.attestationVerificationErrorSchema; } });
|
|
282
|
-
Object.defineProperty(exports, "attestationVerificationWarningSchema", { enumerable: true, get: function () { return attestation_js_1.attestationVerificationWarningSchema; } });
|
|
283
|
-
Object.defineProperty(exports, "attestationVerificationResultSchema", { enumerable: true, get: function () { return attestation_js_1.attestationVerificationResultSchema; } });
|
|
284
|
-
// ============================================================================
|
|
285
|
-
// Agent Identity Types
|
|
286
|
-
// ============================================================================
|
|
287
|
-
var identity_js_1 = require("./identity.js");
|
|
288
|
-
// Functions
|
|
289
|
-
Object.defineProperty(exports, "createAgentIdentity", { enumerable: true, get: function () { return identity_js_1.createAgentIdentity; } });
|
|
290
|
-
Object.defineProperty(exports, "toAgentIdentitySummary", { enumerable: true, get: function () { return identity_js_1.toAgentIdentitySummary; } });
|
|
291
|
-
Object.defineProperty(exports, "matchesAgentCriteria", { enumerable: true, get: function () { return identity_js_1.matchesAgentCriteria; } });
|
|
292
|
-
Object.defineProperty(exports, "capabilityVectorSatisfies", { enumerable: true, get: function () { return identity_js_1.capabilityVectorSatisfies; } });
|
|
293
|
-
Object.defineProperty(exports, "isCapabilityVector", { enumerable: true, get: function () { return identity_js_1.isCapabilityVector; } });
|
|
294
|
-
Object.defineProperty(exports, "isAgentIdentity", { enumerable: true, get: function () { return identity_js_1.isAgentIdentity; } });
|
|
295
|
-
Object.defineProperty(exports, "isAgentIdentitySummary", { enumerable: true, get: function () { return identity_js_1.isAgentIdentitySummary; } });
|
|
296
|
-
// Zod Schemas
|
|
297
|
-
Object.defineProperty(exports, "capabilityVectorSchema", { enumerable: true, get: function () { return identity_js_1.capabilityVectorSchema; } });
|
|
298
|
-
Object.defineProperty(exports, "agentMetadataSchema", { enumerable: true, get: function () { return identity_js_1.agentMetadataSchema; } });
|
|
299
|
-
Object.defineProperty(exports, "verificationMethodSchema", { enumerable: true, get: function () { return identity_js_1.verificationMethodSchema; } });
|
|
300
|
-
Object.defineProperty(exports, "serviceEndpointSchema", { enumerable: true, get: function () { return identity_js_1.serviceEndpointSchema; } });
|
|
301
|
-
Object.defineProperty(exports, "agentIdentitySchema", { enumerable: true, get: function () { return identity_js_1.agentIdentitySchema; } });
|
|
302
|
-
Object.defineProperty(exports, "agentIdentitySummarySchema", { enumerable: true, get: function () { return identity_js_1.agentIdentitySummarySchema; } });
|
|
303
|
-
Object.defineProperty(exports, "agentRegistrationOptionsSchema", { enumerable: true, get: function () { return identity_js_1.agentRegistrationOptionsSchema; } });
|
|
304
|
-
Object.defineProperty(exports, "agentMatchCriteriaSchema", { enumerable: true, get: function () { return identity_js_1.agentMatchCriteriaSchema; } });
|
|
305
|
-
// ============================================================================
|
|
306
|
-
// JWT Claims (OpenID Connect)
|
|
307
|
-
// ============================================================================
|
|
308
|
-
var jwt_claims_js_1 = require("./jwt-claims.js");
|
|
309
|
-
// Functions
|
|
310
|
-
Object.defineProperty(exports, "generateJWTClaims", { enumerable: true, get: function () { return jwt_claims_js_1.generateJWTClaims; } });
|
|
311
|
-
Object.defineProperty(exports, "generateMinimalJWTClaims", { enumerable: true, get: function () { return jwt_claims_js_1.generateMinimalJWTClaims; } });
|
|
312
|
-
Object.defineProperty(exports, "validateJWTClaims", { enumerable: true, get: function () { return jwt_claims_js_1.validateJWTClaims; } });
|
|
313
|
-
Object.defineProperty(exports, "extractCapabilityFromClaims", { enumerable: true, get: function () { return jwt_claims_js_1.extractCapabilityFromClaims; } });
|
|
314
|
-
Object.defineProperty(exports, "extractIdentityFromClaims", { enumerable: true, get: function () { return jwt_claims_js_1.extractIdentityFromClaims; } });
|
|
315
|
-
Object.defineProperty(exports, "claimsHaveDomain", { enumerable: true, get: function () { return jwt_claims_js_1.claimsHaveDomain; } });
|
|
316
|
-
Object.defineProperty(exports, "claimsMeetRequirements", { enumerable: true, get: function () { return jwt_claims_js_1.claimsMeetRequirements; } });
|
|
317
|
-
// Zod Schemas
|
|
318
|
-
Object.defineProperty(exports, "standardJWTClaimsSchema", { enumerable: true, get: function () { return jwt_claims_js_1.standardJWTClaimsSchema; } });
|
|
319
|
-
Object.defineProperty(exports, "aciAttestationClaimSchema", { enumerable: true, get: function () { return jwt_claims_js_1.aciAttestationClaimSchema; } });
|
|
320
|
-
Object.defineProperty(exports, "aciConstraintsClaimSchema", { enumerable: true, get: function () { return jwt_claims_js_1.aciConstraintsClaimSchema; } });
|
|
321
|
-
Object.defineProperty(exports, "aciJWTClaimsSchema", { enumerable: true, get: function () { return jwt_claims_js_1.aciJWTClaimsSchema; } });
|
|
322
|
-
Object.defineProperty(exports, "jwtClaimsValidationOptionsSchema", { enumerable: true, get: function () { return jwt_claims_js_1.jwtClaimsValidationOptionsSchema; } });
|
|
323
|
-
Object.defineProperty(exports, "jwtClaimsValidationErrorSchema", { enumerable: true, get: function () { return jwt_claims_js_1.jwtClaimsValidationErrorSchema; } });
|
|
324
|
-
Object.defineProperty(exports, "jwtClaimsValidationResultSchema", { enumerable: true, get: function () { return jwt_claims_js_1.jwtClaimsValidationResultSchema; } });
|
|
325
|
-
// ============================================================================
|
|
326
|
-
// Effective Permission Calculation
|
|
327
|
-
// ============================================================================
|
|
328
|
-
var effective_permission_js_1 = require("./effective-permission.js");
|
|
329
|
-
// Functions
|
|
330
|
-
Object.defineProperty(exports, "calculateEffectivePermission", { enumerable: true, get: function () { return effective_permission_js_1.calculateEffectivePermission; } });
|
|
331
|
-
Object.defineProperty(exports, "permissionAllowsLevel", { enumerable: true, get: function () { return effective_permission_js_1.permissionAllowsLevel; } });
|
|
332
|
-
Object.defineProperty(exports, "contextAllowsLevel", { enumerable: true, get: function () { return effective_permission_js_1.contextAllowsLevel; } });
|
|
333
|
-
Object.defineProperty(exports, "checkPermission", { enumerable: true, get: function () { return effective_permission_js_1.checkPermission; } });
|
|
334
|
-
Object.defineProperty(exports, "modifyContextCeiling", { enumerable: true, get: function () { return effective_permission_js_1.modifyContextCeiling; } });
|
|
335
|
-
Object.defineProperty(exports, "calculateRequiredChanges", { enumerable: true, get: function () { return effective_permission_js_1.calculateRequiredChanges; } });
|
|
336
|
-
Object.defineProperty(exports, "createDefaultContext", { enumerable: true, get: function () { return effective_permission_js_1.createDefaultContext; } });
|
|
337
|
-
Object.defineProperty(exports, "createMaxPermissionContext", { enumerable: true, get: function () { return effective_permission_js_1.createMaxPermissionContext; } });
|
|
338
|
-
Object.defineProperty(exports, "isEffectivePermissionContext", { enumerable: true, get: function () { return effective_permission_js_1.isEffectivePermissionContext; } });
|
|
339
|
-
Object.defineProperty(exports, "isEffectivePermission", { enumerable: true, get: function () { return effective_permission_js_1.isEffectivePermission; } });
|
|
340
|
-
// Zod Schemas
|
|
341
|
-
Object.defineProperty(exports, "effectivePermissionContextSchema", { enumerable: true, get: function () { return effective_permission_js_1.effectivePermissionContextSchema; } });
|
|
342
|
-
Object.defineProperty(exports, "constrainingFactorSchema", { enumerable: true, get: function () { return effective_permission_js_1.constrainingFactorSchema; } });
|
|
343
|
-
Object.defineProperty(exports, "permissionCeilingsSchema", { enumerable: true, get: function () { return effective_permission_js_1.permissionCeilingsSchema; } });
|
|
344
|
-
Object.defineProperty(exports, "effectivePermissionSchema", { enumerable: true, get: function () { return effective_permission_js_1.effectivePermissionSchema; } });
|
|
345
|
-
Object.defineProperty(exports, "permissionCheckResultSchema", { enumerable: true, get: function () { return effective_permission_js_1.permissionCheckResultSchema; } });
|
|
346
|
-
// ============================================================================
|
|
347
|
-
// Cross-System Mappings
|
|
348
|
-
// ============================================================================
|
|
349
|
-
var mapping_js_1 = require("./mapping.js");
|
|
350
|
-
Object.defineProperty(exports, "TrustBand", { enumerable: true, get: function () { return mapping_js_1.TrustBand; } });
|
|
351
|
-
// Constants
|
|
352
|
-
Object.defineProperty(exports, "VORION_NAMESPACES", { enumerable: true, get: function () { return mapping_js_1.VORION_NAMESPACES; } });
|
|
353
|
-
Object.defineProperty(exports, "DOMAIN_TO_NAMESPACE_MAP", { enumerable: true, get: function () { return mapping_js_1.DOMAIN_TO_NAMESPACE_MAP; } });
|
|
354
|
-
Object.defineProperty(exports, "NAMESPACE_TO_DOMAIN_MAP", { enumerable: true, get: function () { return mapping_js_1.NAMESPACE_TO_DOMAIN_MAP; } });
|
|
355
|
-
Object.defineProperty(exports, "CERTIFICATION_TO_RUNTIME_TIER_MAP", { enumerable: true, get: function () { return mapping_js_1.CERTIFICATION_TO_RUNTIME_TIER_MAP; } });
|
|
356
|
-
Object.defineProperty(exports, "RUNTIME_TO_CERTIFICATION_TIER_MAP", { enumerable: true, get: function () { return mapping_js_1.RUNTIME_TO_CERTIFICATION_TIER_MAP; } });
|
|
357
|
-
Object.defineProperty(exports, "domainNamespaceMap", { enumerable: true, get: function () { return mapping_js_1.domainNamespaceMap; } });
|
|
358
|
-
Object.defineProperty(exports, "certificationRuntimeMap", { enumerable: true, get: function () { return mapping_js_1.certificationRuntimeMap; } });
|
|
359
|
-
// Functions
|
|
360
|
-
Object.defineProperty(exports, "certificationTierToRuntimeTier", { enumerable: true, get: function () { return mapping_js_1.certificationTierToRuntimeTier; } });
|
|
361
|
-
Object.defineProperty(exports, "runtimeTierToCertificationTier", { enumerable: true, get: function () { return mapping_js_1.runtimeTierToCertificationTier; } });
|
|
362
|
-
Object.defineProperty(exports, "trustBandToCertificationTier", { enumerable: true, get: function () { return mapping_js_1.trustBandToCertificationTier; } });
|
|
363
|
-
Object.defineProperty(exports, "trustBandToRuntimeTier", { enumerable: true, get: function () { return mapping_js_1.trustBandToRuntimeTier; } });
|
|
364
|
-
Object.defineProperty(exports, "certificationTierToTrustBand", { enumerable: true, get: function () { return mapping_js_1.certificationTierToTrustBand; } });
|
|
365
|
-
Object.defineProperty(exports, "runtimeTierToTrustBand", { enumerable: true, get: function () { return mapping_js_1.runtimeTierToTrustBand; } });
|
|
366
|
-
Object.defineProperty(exports, "scoreToBothTiers", { enumerable: true, get: function () { return mapping_js_1.scoreToBothTiers; } });
|
|
367
|
-
Object.defineProperty(exports, "normalizeScoreBetweenScales", { enumerable: true, get: function () { return mapping_js_1.normalizeScoreBetweenScales; } });
|
|
368
|
-
Object.defineProperty(exports, "aciDomainToVorionNamespace", { enumerable: true, get: function () { return mapping_js_1.aciDomainToVorionNamespace; } });
|
|
369
|
-
Object.defineProperty(exports, "vorionNamespaceToAciDomain", { enumerable: true, get: function () { return mapping_js_1.vorionNamespaceToAciDomain; } });
|
|
370
|
-
Object.defineProperty(exports, "aciDomainsToVorionNamespaces", { enumerable: true, get: function () { return mapping_js_1.aciDomainsToVorionNamespaces; } });
|
|
371
|
-
Object.defineProperty(exports, "vorionNamespacesToAciDomains", { enumerable: true, get: function () { return mapping_js_1.vorionNamespacesToAciDomains; } });
|
|
372
|
-
Object.defineProperty(exports, "capabilityLevelToAutonomyDescription", { enumerable: true, get: function () { return mapping_js_1.capabilityLevelToAutonomyDescription; } });
|
|
373
|
-
Object.defineProperty(exports, "capabilityLevelToMinRuntimeTier", { enumerable: true, get: function () { return mapping_js_1.capabilityLevelToMinRuntimeTier; } });
|
|
374
|
-
Object.defineProperty(exports, "createBidirectionalMap", { enumerable: true, get: function () { return mapping_js_1.createBidirectionalMap; } });
|
|
375
|
-
Object.defineProperty(exports, "isVorionNamespace", { enumerable: true, get: function () { return mapping_js_1.isVorionNamespace; } });
|
|
376
|
-
Object.defineProperty(exports, "isTrustBand", { enumerable: true, get: function () { return mapping_js_1.isTrustBand; } });
|
|
377
|
-
// Zod Schemas
|
|
378
|
-
Object.defineProperty(exports, "trustBandSchema", { enumerable: true, get: function () { return mapping_js_1.trustBandSchema; } });
|
|
379
|
-
Object.defineProperty(exports, "vorionNamespaceSchema", { enumerable: true, get: function () { return mapping_js_1.vorionNamespaceSchema; } });
|
|
380
|
-
Object.defineProperty(exports, "tierMappingResultSchema", { enumerable: true, get: function () { return mapping_js_1.tierMappingResultSchema; } });
|
|
381
|
-
Object.defineProperty(exports, "domainMappingResultSchema", { enumerable: true, get: function () { return mapping_js_1.domainMappingResultSchema; } });
|
|
26
|
+
__exportStar(require("../car/index.js"), exports);
|
|
382
27
|
//# sourceMappingURL=index.js.map
|
package/dist/aci/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/aci/index.ts"],"names":[],"mappings":";AAAA
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/aci/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;GAQG;;;;;;;;;;;;;;;;AAEH,kDAAgC"}
|
|
@@ -139,7 +139,7 @@ export interface AgentCapability {
|
|
|
139
139
|
domain: string;
|
|
140
140
|
/** Specific skills within the domain */
|
|
141
141
|
skills: string[];
|
|
142
|
-
/** Minimum trust score required to handle tasks (0-1000) */
|
|
142
|
+
/** Minimum trust score required to handle tasks in this domain (0-1000). This is a routing requirement, not a stored trust score on the agent identity. */
|
|
143
143
|
trustLevel: number;
|
|
144
144
|
/** Autonomy level (0-7, maps to TrustBand) */
|
|
145
145
|
autonomyLevel: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../../src/canonical/agent.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,MAAM,oBAAoB,GAAG,OAAO,GAAG,UAAU,GAAG,QAAQ,GAAG,WAAW,GAAG,UAAU,CAAC;AAE9F;;GAEG;AACH,eAAO,MAAM,wBAAwB,EAAE,SAAS,oBAAoB,EAM1D,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAAC,MAAM,CAAC,oBAAoB,EAAE,MAAM,CAAC,CAMxE,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAAC,MAAM,CAAC,oBAAoB,EAAE,MAAM,CAAC,CAMxE,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,0BAA0B,qEAIrC,CAAC;AAMH;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,MAAM,kBAAkB,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;AAErF;;GAEG;AACH,eAAO,MAAM,sBAAsB,EAAE,SAAS,kBAAkB,EAMtD,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,QAAQ,CAAC,MAAM,CAAC,kBAAkB,EAAE,MAAM,CAAC,CAMpE,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,QAAQ,CAAC,MAAM,CAAC,kBAAkB,EAAE,MAAM,CAAC,CAMpE,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,wBAAwB,8DAInC,CAAC;AAMH;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,MAAM,eAAe,GAAG,SAAS,GAAG,UAAU,GAAG,UAAU,GAAG,OAAO,GAAG,OAAO,CAAC;AAEtF;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,SAAS,eAAe,EAM9C,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,6BAA6B,EAAE,QAAQ,CAAC,MAAM,CAAC,eAAe,EAAE,MAAM,CAAC,CAM1E,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,qBAAqB,kEAIhC,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,iBAAiB,GACzB,UAAU,GACV,SAAS,GACT,UAAU,GACV,YAAY,GACZ,WAAW,CAAC;AAEhB;;GAEG;AACH,eAAO,MAAM,mBAAmB,EAAE,SAAS,iBAAiB,EAMlD,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,uBAAuB,2EAAyE,CAAC;AAE9G;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B,sEAAsE;IACtE,MAAM,EAAE,MAAM,CAAC;IACf,wCAAwC;IACxC,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,
|
|
1
|
+
{"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../../src/canonical/agent.ts"],"names":[],"mappings":"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"}
|
package/dist/car/car-string.d.ts
CHANGED
|
@@ -131,8 +131,8 @@ export declare const parsedCARSchema: z.ZodObject<{
|
|
|
131
131
|
agentClass: string;
|
|
132
132
|
domains: ("A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "S")[];
|
|
133
133
|
domainsBitmask: number;
|
|
134
|
-
extensions: string[];
|
|
135
134
|
car: string;
|
|
135
|
+
extensions: string[];
|
|
136
136
|
}, {
|
|
137
137
|
version: string;
|
|
138
138
|
level: CapabilityLevel;
|
|
@@ -163,8 +163,8 @@ export declare const parsedACISchema: z.ZodObject<{
|
|
|
163
163
|
agentClass: string;
|
|
164
164
|
domains: ("A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "S")[];
|
|
165
165
|
domainsBitmask: number;
|
|
166
|
-
extensions: string[];
|
|
167
166
|
car: string;
|
|
167
|
+
extensions: string[];
|
|
168
168
|
}, {
|
|
169
169
|
version: string;
|
|
170
170
|
level: CapabilityLevel;
|
|
@@ -676,8 +676,8 @@ export declare const carValidationResultSchema: z.ZodObject<{
|
|
|
676
676
|
agentClass: string;
|
|
677
677
|
domains: ("A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "S")[];
|
|
678
678
|
domainsBitmask: number;
|
|
679
|
-
extensions: string[];
|
|
680
679
|
car: string;
|
|
680
|
+
extensions: string[];
|
|
681
681
|
}, {
|
|
682
682
|
version: string;
|
|
683
683
|
level: CapabilityLevel;
|
|
@@ -709,8 +709,8 @@ export declare const carValidationResultSchema: z.ZodObject<{
|
|
|
709
709
|
agentClass: string;
|
|
710
710
|
domains: ("A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "S")[];
|
|
711
711
|
domainsBitmask: number;
|
|
712
|
-
extensions: string[];
|
|
713
712
|
car: string;
|
|
713
|
+
extensions: string[];
|
|
714
714
|
} | undefined;
|
|
715
715
|
}, {
|
|
716
716
|
valid: boolean;
|
|
@@ -783,8 +783,8 @@ export declare const aciValidationResultSchema: z.ZodObject<{
|
|
|
783
783
|
agentClass: string;
|
|
784
784
|
domains: ("A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "S")[];
|
|
785
785
|
domainsBitmask: number;
|
|
786
|
-
extensions: string[];
|
|
787
786
|
car: string;
|
|
787
|
+
extensions: string[];
|
|
788
788
|
}, {
|
|
789
789
|
version: string;
|
|
790
790
|
level: CapabilityLevel;
|
|
@@ -816,8 +816,8 @@ export declare const aciValidationResultSchema: z.ZodObject<{
|
|
|
816
816
|
agentClass: string;
|
|
817
817
|
domains: ("A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "S")[];
|
|
818
818
|
domainsBitmask: number;
|
|
819
|
-
extensions: string[];
|
|
820
819
|
car: string;
|
|
820
|
+
extensions: string[];
|
|
821
821
|
} | undefined;
|
|
822
822
|
}, {
|
|
823
823
|
valid: boolean;
|
|
@@ -46,14 +46,14 @@ export declare const effectivePermissionContextSchema: z.ZodObject<{
|
|
|
46
46
|
contextPolicyCeiling: z.ZodNumber;
|
|
47
47
|
}, "strip", z.ZodTypeAny, {
|
|
48
48
|
certificationTier: CertificationTier;
|
|
49
|
-
competenceLevel: CapabilityLevel;
|
|
50
49
|
runtimeTier: RuntimeTier;
|
|
50
|
+
competenceLevel: CapabilityLevel;
|
|
51
51
|
observabilityCeiling: number;
|
|
52
52
|
contextPolicyCeiling: number;
|
|
53
53
|
}, {
|
|
54
54
|
certificationTier: CertificationTier;
|
|
55
|
-
competenceLevel: CapabilityLevel;
|
|
56
55
|
runtimeTier: RuntimeTier;
|
|
56
|
+
competenceLevel: CapabilityLevel;
|
|
57
57
|
observabilityCeiling: number;
|
|
58
58
|
contextPolicyCeiling: number;
|
|
59
59
|
}>;
|