@agenticprimitives/ontology 1.0.0-alpha.16 → 1.0.0-alpha.17
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/cbox/guidance-vocabulary.ttl +22 -0
- package/cbox/interaction-vocabulary.ttl +102 -0
- package/cbox/scope-vocabulary.ttl +112 -0
- package/cbox/skill-grounding-vocabulary.ttl +18 -0
- package/context.jsonld +6 -0
- package/dist/artifacts.d.ts +3 -3
- package/dist/artifacts.d.ts.map +1 -1
- package/dist/artifacts.js +33 -0
- package/dist/artifacts.js.map +1 -1
- package/dist/grounded-vocabulary.d.ts +29 -0
- package/dist/grounded-vocabulary.d.ts.map +1 -0
- package/dist/grounded-vocabulary.js +110 -0
- package/dist/grounded-vocabulary.js.map +1 -0
- package/dist/index.d.ts +157 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +193 -4
- package/dist/index.js.map +1 -1
- package/mappings/actor-context-standards.ttl +89 -0
- package/mappings/collaboration-crosswalk-actors.ttl +30 -0
- package/mappings/collaboration-crosswalk-authority.ttl +31 -0
- package/mappings/collaboration-crosswalk-guidance.ttl +29 -0
- package/mappings/collaboration-crosswalk-intent.ttl +29 -0
- package/mappings/collaboration-crosswalk-messaging.ttl +37 -0
- package/mappings/collaboration-crosswalk-organization.ttl +44 -0
- package/mappings/collaboration-crosswalk-protocols.ttl +46 -0
- package/mappings/collaboration-crosswalk-skills.ttl +45 -0
- package/mappings/collaboration-profile.ttl +74 -0
- package/package.json +1 -1
- package/tbox/actor-context.ttl +134 -0
- package/tbox/entitlement.ttl +41 -0
- package/tbox/fabric.ttl +59 -0
- package/tbox/guidance.ttl +40 -0
- package/tbox/intents.ttl +66 -11
- package/tbox/messaging.ttl +134 -0
- package/tbox/org.ttl +122 -0
- package/tbox/scope.ttl +59 -0
- package/tbox/situation.ttl +56 -0
- package/tbox/skills.ttl +104 -12
- package/tbox/verification-receipt.ttl +127 -0
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# Actor-context DUAL grounding — web2 (IAM / legal) AND web3 (ERC / CAIP) — spec 326 W1; ADR-0052.
|
|
2
|
+
#
|
|
3
|
+
# The point of this file: explainability comes from the TERMS, not a side document. Each apactor: term names a
|
|
4
|
+
# concept a web2 IAM/security/legal reader AND a web3 reader already recognize. Grounding is skos:closeMatch to
|
|
5
|
+
# real ontologies (PROV-O, ODRL) + rdfs:seeAlso to the authoritative web2 AND web3 standard, + skos:editorialNote
|
|
6
|
+
# naming the recognizable term on each side. NEVER owl:equivalentClass / owl:sameAs — a cross-domain link is a
|
|
7
|
+
# proved relationship, not identity equality (ADR-0052 §3). The same pairs are exposed, typed, in the
|
|
8
|
+
# `GROUNDED_VOCABULARY` TS export for code + UX.
|
|
9
|
+
|
|
10
|
+
@prefix apactor: <https://agenticprimitives.dev/ns/actor#> .
|
|
11
|
+
@prefix apdel: <https://agenticprimitives.dev/ns/delegation#> .
|
|
12
|
+
@prefix prov: <http://www.w3.org/ns/prov#> .
|
|
13
|
+
@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
|
|
14
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
15
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
16
|
+
|
|
17
|
+
<> rdfs:comment "Dual web2/web3 grounding for the actor-context vocabulary. Patterns, not upper-ontology inheritance." .
|
|
18
|
+
|
|
19
|
+
# ─── AccountabilityRoot ──────────────────────────────────────────────────────
|
|
20
|
+
apactor:AccountabilityRoot skos:closeMatch prov:Agent ;
|
|
21
|
+
rdfs:seeAlso <https://gdpr-info.eu/art-4-gdpr/> , # web2: "controller" / accountable party
|
|
22
|
+
<https://eips.ethereum.org/EIPS/eip-4337> , # web3: ERC-4337 smart account
|
|
23
|
+
<https://chainagnostic.org/CAIPs/caip-10> ;
|
|
24
|
+
skos:editorialNote "web2 = accountable party / GDPR controller · web3 = ERC-4337 Smart Agent (CAIP-10 address). The durable answerability anchor; not the default presentation identifier." .
|
|
25
|
+
|
|
26
|
+
# ─── PresentationIdentifier ──────────────────────────────────────────────────
|
|
27
|
+
apactor:PresentationIdentifier
|
|
28
|
+
rdfs:seeAlso <https://openid.net/specs/openid-connect-core-1_0.html#SubjectIDTypes> , # web2: OIDC pairwise subject identifier
|
|
29
|
+
<https://eips.ethereum.org/EIPS/eip-8004> ; # web3: registry-facing agent entry
|
|
30
|
+
skos:editorialNote "web2 = OIDC pairwise subject identifier / display name · web3 = the address or handle shown on a surface. Chosen per reliance class; a facet, never authority." .
|
|
31
|
+
|
|
32
|
+
# ─── SubjectRef ──────────────────────────────────────────────────────────────
|
|
33
|
+
apactor:SubjectRef skos:closeMatch prov:Entity ;
|
|
34
|
+
rdfs:seeAlso <https://www.rfc-editor.org/rfc/rfc9493> , # web2: Subject Identifiers for SecEvent (RFC 9493)
|
|
35
|
+
<https://chainagnostic.org/CAIPs/caip-10> ; # web3: CAIP-10 account id
|
|
36
|
+
skos:editorialNote "web2 = a Subject Identifier (RFC 9493) across OIDC/SAML/SPIFFE domains · web3 = a CAIP-10 account. Ring 0 uses the caip10 variant for authority." .
|
|
37
|
+
|
|
38
|
+
# ─── SubjectBinding (proved relationship, NOT equality) ──────────────────────
|
|
39
|
+
apactor:SubjectBinding skos:closeMatch prov:wasDerivedFrom ;
|
|
40
|
+
rdfs:seeAlso <https://www.w3.org/TR/vc-data-model-2.0/> , # web2: W3C Verifiable Credential (account linking)
|
|
41
|
+
<https://eips.ethereum.org/EIPS/eip-1271> ; # web3: ERC-1271 signature validation over the digest
|
|
42
|
+
skos:editorialNote "web2 = account linking / identity federation attested as a Verifiable Credential · web3 = an ERC-1271/6492-verified signed link. A relationship, never identity equality." .
|
|
43
|
+
|
|
44
|
+
# ─── AgentInstance ───────────────────────────────────────────────────────────
|
|
45
|
+
apactor:AgentInstance skos:closeMatch prov:Entity ;
|
|
46
|
+
rdfs:seeAlso <https://datatracker.ietf.org/wg/wimse/about/> , # web2: WIMSE workload identity
|
|
47
|
+
<https://spiffe.io/docs/latest/spiffe-about/spiffe-concepts/> ; # web2: SPIFFE workload
|
|
48
|
+
skos:editorialNote "web2 = a WIMSE / SPIFFE workload instance · web3 = one running task/session/container. A facet of the account, not persistent identity." .
|
|
49
|
+
|
|
50
|
+
# ─── ConfirmationKey ─────────────────────────────────────────────────────────
|
|
51
|
+
apactor:ConfirmationKey
|
|
52
|
+
rdfs:seeAlso <https://www.rfc-editor.org/rfc/rfc7800> , # web2: OAuth proof-of-possession (cnf)
|
|
53
|
+
<https://www.w3.org/TR/webauthn-3/> ; # web3/web2: WebAuthn passkey signer
|
|
54
|
+
skos:editorialNote "web2 = OAuth/OIDC cnf proof-of-possession key (RFC 7800) · web3 = the session-key / passkey signer. Proves possession, not identity." .
|
|
55
|
+
|
|
56
|
+
# ─── Roles ───────────────────────────────────────────────────────────────────
|
|
57
|
+
apactor:rootPrincipal skos:closeMatch prov:Agent ;
|
|
58
|
+
rdfs:seeAlso <https://www.rfc-editor.org/rfc/rfc6749#section-1.1> , # web2: OAuth "resource owner" / principal
|
|
59
|
+
<https://chainagnostic.org/CAIPs/caip-10> ;
|
|
60
|
+
skos:editorialNote "web2 = OAuth resource-owner / agency-law principal · web3 = the controlling Person/Org SA. May be pairwise/pseudonymous." .
|
|
61
|
+
|
|
62
|
+
apactor:actingAgent skos:closeMatch prov:Agent ;
|
|
63
|
+
rdfs:seeAlso <https://www.rfc-editor.org/rfc/rfc8693#section-4.1> , # web2: OAuth token-exchange `act` actor claim
|
|
64
|
+
<https://eips.ethereum.org/EIPS/eip-4337> ;
|
|
65
|
+
skos:editorialNote "web2 = the OAuth token-exchange act (actor) claim · web3 = the session-key Smart Agent performing the hop. Distinct from prov:actedOnBehalfOf, which a Delegation may only PROJECT." .
|
|
66
|
+
|
|
67
|
+
apactor:agentInstance rdfs:seeAlso <https://datatracker.ietf.org/wg/wimse/about/> ;
|
|
68
|
+
skos:editorialNote "web2 = WIMSE workload-instance binding · web3 = running-instance reference." .
|
|
69
|
+
|
|
70
|
+
apactor:confirmationKey rdfs:seeAlso <https://www.rfc-editor.org/rfc/rfc7800> ;
|
|
71
|
+
skos:editorialNote "web2 = OAuth cnf claim binding · web3 = session/passkey key binding." .
|
|
72
|
+
|
|
73
|
+
# ─── Binding relationships ───────────────────────────────────────────────────
|
|
74
|
+
apactor:delegatedTo skos:closeMatch odrl:Permission ;
|
|
75
|
+
rdfs:seeAlso apdel:Delegation , # web3: on-chain, ERC-1271-verified delegation
|
|
76
|
+
<https://www.rfc-editor.org/rfc/rfc8693> ; # web2: delegation / token exchange
|
|
77
|
+
skos:editorialNote "web2 = a delegation / power-of-attorney grant (OAuth token exchange) · web3 = an apdel:Delegation caveat chain. The projection; authority stays on-chain." .
|
|
78
|
+
|
|
79
|
+
apactor:agentIdentityOf rdfs:seeAlso <https://eips.ethereum.org/EIPS/eip-8004> ;
|
|
80
|
+
skos:editorialNote "web2 = federated agent identity / registry handle · web3 = ERC-8004 registry entry. A facet bound by proof, never equal to the SA." .
|
|
81
|
+
|
|
82
|
+
apactor:runtimeInstanceOf rdfs:seeAlso <https://spiffe.io/docs/latest/spiffe-about/spiffe-concepts/> ;
|
|
83
|
+
skos:editorialNote "web2 = SPIFFE/WIMSE workload ↔ identity binding · web3 = running instance ↔ agent binding." .
|
|
84
|
+
|
|
85
|
+
# ─── AuthorityChainEnvelope ──────────────────────────────────────────────────
|
|
86
|
+
apactor:AuthorityChainEnvelope
|
|
87
|
+
rdfs:seeAlso <https://www.rfc-editor.org/rfc/rfc8693> , # web2: nested actor / delegation chain
|
|
88
|
+
<https://eips.ethereum.org/EIPS/eip-7710> ; # web3: on-chain delegation chains
|
|
89
|
+
skos:editorialNote "web2 = a nested OAuth act delegation chain · web3 = the on-chain Delegation parent-hash chain. The portable projection; never widens authority." .
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Collaboration crosswalk — actors (spec 325 §4.1; ADR-0049).
|
|
2
|
+
# skos:closeMatch + rdfs:seeAlso only — no owl:imports, no new subClassOf to externals.
|
|
3
|
+
|
|
4
|
+
@prefix ap: <https://agenticprimitives.dev/ns/core#> .
|
|
5
|
+
@prefix prov: <http://www.w3.org/ns/prov#> .
|
|
6
|
+
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
|
7
|
+
@prefix dul: <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#> .
|
|
8
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
9
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
10
|
+
|
|
11
|
+
<> rdfs:comment "Actor profile crosswalk. AP Agent kinds align to PROV-O and ActivityStreams actor types as patterns." .
|
|
12
|
+
|
|
13
|
+
ap:Agent skos:closeMatch prov:Agent, dul:Agent ;
|
|
14
|
+
rdfs:seeAlso <https://www.w3.org/TR/prov-o/#term_Agent> .
|
|
15
|
+
|
|
16
|
+
ap:PersonAgent skos:closeMatch prov:Person, as:Person ;
|
|
17
|
+
rdfs:seeAlso <https://www.w3.org/TR/prov-o/#term_Person> ,
|
|
18
|
+
<https://www.w3.org/TR/activitystreams-vocabulary/#dfn-person> .
|
|
19
|
+
|
|
20
|
+
ap:OrganizationAgent skos:closeMatch prov:Organization, as:Organization ;
|
|
21
|
+
rdfs:seeAlso <https://www.w3.org/TR/prov-o/#term_Organization> ,
|
|
22
|
+
<https://www.w3.org/TR/activitystreams-vocabulary/#dfn-organization> .
|
|
23
|
+
|
|
24
|
+
ap:ServiceAgent skos:closeMatch prov:SoftwareAgent, as:Service, as:Application ;
|
|
25
|
+
rdfs:seeAlso <https://www.w3.org/TR/prov-o/#term_SoftwareAgent> ,
|
|
26
|
+
<https://www.w3.org/TR/activitystreams-vocabulary/#dfn-service> .
|
|
27
|
+
|
|
28
|
+
# Boundary (spec 325 §4.1): prov:actedOnBehalfOf is provenance — not equivalent to apdel:Delegation.
|
|
29
|
+
prov:actedOnBehalfOf rdfs:seeAlso <https://agenticprimitives.dev/ns/delegation#Delegation> ;
|
|
30
|
+
rdfs:comment "Successful AP Delegation may PROJECT prov:actedOnBehalfOf on execution — not equivalent." .
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Collaboration crosswalk — authority + evidence (spec 325 §4.6).
|
|
2
|
+
|
|
3
|
+
@prefix apdel: <https://agenticprimitives.dev/ns/delegation#> .
|
|
4
|
+
@prefix apent: <https://agenticprimitives.dev/ns/entitlement#> .
|
|
5
|
+
@prefix apsit: <https://agenticprimitives.dev/ns/situation#> .
|
|
6
|
+
@prefix apvc: <https://agenticprimitives.dev/ns/verifiable-credential#> .
|
|
7
|
+
@prefix aporg: <https://agenticprimitives.dev/ns/org#> .
|
|
8
|
+
@prefix prov: <http://www.w3.org/ns/prov#> .
|
|
9
|
+
@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
|
|
10
|
+
@prefix w3cvc: <https://www.w3.org/2018/credentials#> .
|
|
11
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
12
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
13
|
+
|
|
14
|
+
<> rdfs:comment "Authority profile: executable Delegation ≠ ODRL Permission ≠ prov:actedOnBehalfOf." .
|
|
15
|
+
|
|
16
|
+
apdel:Delegation rdfs:seeAlso <https://eips.ethereum.org/EIPS/eip-7710> ;
|
|
17
|
+
rdfs:comment "NOT owl:equivalentClass odrl:Permission — different enforcement model." .
|
|
18
|
+
|
|
19
|
+
apent:AccessEntitlement skos:closeMatch odrl:Policy, odrl:Permission ;
|
|
20
|
+
rdfs:seeAlso odrl:Prohibition, odrl:Duty ;
|
|
21
|
+
rdfs:comment "May PROJECT to ODRL profile; execution still requires AP gates." .
|
|
22
|
+
|
|
23
|
+
apvc:VerifiableCredential skos:closeMatch w3cvc:VerifiableCredential .
|
|
24
|
+
|
|
25
|
+
apsit:Situation rdfs:comment "Credential ATTESTS Situation — Situation is not a Credential (ADR-0048)." .
|
|
26
|
+
|
|
27
|
+
aporg:OrganizationMembership rdfs:seeAlso apvc:VerifiableCredential ;
|
|
28
|
+
rdfs:comment "OrganizationMembershipCredential attests membership Situation (spec 324 §6)." .
|
|
29
|
+
|
|
30
|
+
prov:actedOnBehalfOf rdfs:seeAlso apdel:Delegation ;
|
|
31
|
+
rdfs:comment "Projection on successful delegated execution — not equivalent." .
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Collaboration crosswalk — Agent Skill packages vs capabilities (ADR-0050, ADR-0051).
|
|
2
|
+
|
|
3
|
+
@prefix apguide: <https://agenticprimitives.dev/ns/guidance#> .
|
|
4
|
+
@prefix aps: <https://agenticprimitives.dev/ns/skill#> .
|
|
5
|
+
@prefix a2a: <https://google.github.io/A2A/specification#> .
|
|
6
|
+
@prefix oasf: <https://schema.oasf.outshift.com/#> .
|
|
7
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
8
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
9
|
+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
|
10
|
+
|
|
11
|
+
<> rdfs:comment "Agent Skill packages (SKILL.md playbooks) vs CapabilityDefinition (A2A/OASF). No equivalence." .
|
|
12
|
+
|
|
13
|
+
apguide:AgentSkillPackage skos:closeMatch <https://agentskills.io/specification> ;
|
|
14
|
+
rdfs:seeAlso <https://cursor.com/docs/context/skills> , <https://github.com/anthropics/skills> ;
|
|
15
|
+
rdfs:comment "Agent Skills standard — portable procedural package; product runtimes may add extensions." .
|
|
16
|
+
|
|
17
|
+
apguide:AgentGuidanceSkill rdfs:subClassOf apguide:AgentSkillPackage ; owl:deprecated true .
|
|
18
|
+
|
|
19
|
+
apguide:RepositoryGuidanceDoc skos:closeMatch <https://docs.anthropic.com/en/docs/claude-code/memory> ;
|
|
20
|
+
rdfs:comment "CLAUDE.md-style repo memory — not an Agent Card field." .
|
|
21
|
+
|
|
22
|
+
apguide:AgentSkillPackage rdfs:comment "NOT skos:exactMatch a2a:AgentSkill or aps:CapabilityDefinition." .
|
|
23
|
+
aps:CapabilityDefinition rdfs:comment "NOT equivalent to SKILL.md or Cursor skills.sh entries." .
|
|
24
|
+
aps:AgentSkillDefinition rdfs:subClassOf aps:CapabilityDefinition ; owl:deprecated true .
|
|
25
|
+
|
|
26
|
+
aps:CapabilityProtocolProjection skos:closeMatch a2a:AgentSkill, oasf:Skill ;
|
|
27
|
+
rdfs:comment "A2A advertisement or OASF classification — never a SKILL.md playbook." .
|
|
28
|
+
|
|
29
|
+
aps:SkillProtocolProjection rdfs:subClassOf aps:CapabilityProtocolProjection ; owl:deprecated true .
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Collaboration crosswalk — intent (spec 325 §4.4).
|
|
2
|
+
|
|
3
|
+
@prefix apint: <https://agenticprimitives.dev/ns/intent#> .
|
|
4
|
+
@prefix vf: <https://w3id.org/valueflows#> .
|
|
5
|
+
@prefix wsmo: <http://www.wsmo.org/ns/d2rl#> .
|
|
6
|
+
@prefix ufo-c: <http://purl.org/nemo/ufo-c#> .
|
|
7
|
+
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
|
8
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
9
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
10
|
+
|
|
11
|
+
<> rdfs:comment "Intent profile: ValueFlows + WSMO Goal patterns. Spine crypto crosswalks remain in spine-standards.ttl." .
|
|
12
|
+
|
|
13
|
+
apint:Intent skos:closeMatch vf:Intent ;
|
|
14
|
+
rdfs:seeAlso wsmo:Goal , ufo-c:Intention ,
|
|
15
|
+
<https://w3id.org/valueflows/#Intent> .
|
|
16
|
+
|
|
17
|
+
apint:Proposal skos:closeMatch vf:Proposal .
|
|
18
|
+
apint:Commitment skos:closeMatch vf:Commitment .
|
|
19
|
+
|
|
20
|
+
apint:JoinOrganizationIntent skos:closeMatch as:Join ;
|
|
21
|
+
rdfs:seeAlso apint:RelationshipIntent .
|
|
22
|
+
|
|
23
|
+
apint:LeaveOrganizationIntent skos:closeMatch as:Leave .
|
|
24
|
+
|
|
25
|
+
apint:InvokeSkillIntent rdfs:seeAlso wsmo:Goal ;
|
|
26
|
+
rdfs:comment "WSMO Goal → Web Service mediation pattern for intent-to-skill resolution." .
|
|
27
|
+
|
|
28
|
+
apint:ResourceExchangeIntent skos:closeMatch vf:Intent ;
|
|
29
|
+
rdfs:comment "Give/Receive marketplace intents; VF conversational gap filled by CommunicativeAct layer." .
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Collaboration crosswalk — messaging + communicative acts (spec 325 §4.3).
|
|
2
|
+
|
|
3
|
+
@prefix apmsg: <https://agenticprimitives.dev/ns/messaging#> .
|
|
4
|
+
@prefix apfab: <https://agenticprimitives.dev/ns/fabric#> .
|
|
5
|
+
@prefix prov: <http://www.w3.org/ns/prov#> .
|
|
6
|
+
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
|
7
|
+
@prefix sioc: <http://rdfs.org/sioc/ns#> .
|
|
8
|
+
@prefix fipa: <http://www.fipa.org/ontology/fipa-acl#> .
|
|
9
|
+
@prefix ofp: <https://github.com/LlamaIndex/open-floor-protocol#> .
|
|
10
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
11
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
12
|
+
|
|
13
|
+
<> rdfs:comment "CommunicativeAct semantic layer; transport adapters lift to apmsg:CommunicativeAct." .
|
|
14
|
+
|
|
15
|
+
apmsg:CommunicativeAct skos:closeMatch prov:Activity, as:Activity ;
|
|
16
|
+
rdfs:seeAlso fipa:CommunicativeAct ;
|
|
17
|
+
rdfs:comment "FIPA mental-state claims are NOT authority rules (ADR-0049)." .
|
|
18
|
+
|
|
19
|
+
apmsg:Performative rdfs:seeAlso fipa:Performative ;
|
|
20
|
+
skos:closeMatch as:Activity .
|
|
21
|
+
|
|
22
|
+
apmsg:Conversation skos:closeMatch sioc:Forum ;
|
|
23
|
+
rdfs:seeAlso ofp:ConversationEnvelope .
|
|
24
|
+
|
|
25
|
+
apmsg:DiscussionTopic skos:closeMatch sioc:Container ;
|
|
26
|
+
rdfs:comment "UI label Topic; legacy 'channel' row." .
|
|
27
|
+
|
|
28
|
+
apmsg:MessageThread skos:closeMatch sioc:Thread .
|
|
29
|
+
|
|
30
|
+
apfab:ExchangeEnvelope rdfs:seeAlso ofp:ConversationEnvelope ;
|
|
31
|
+
rdfs:comment "Signed AP envelope; Open Floor pattern for multi-party human+agent exchange." .
|
|
32
|
+
|
|
33
|
+
apfab:carriesAct rdfs:comment "ExchangeEnvelope carries zero..n CommunicativeActs (spec 324)." .
|
|
34
|
+
|
|
35
|
+
# Performative ↔ FIPA / AS (representative; full codelist in cbox/interaction-vocabulary.ttl)
|
|
36
|
+
apmsg:Performative skos:closeMatch fipa:inform, fipa:request, fipa:query-if, fipa:propose,
|
|
37
|
+
fipa:accept-proposal, fipa:reject-proposal, fipa:agree, fipa:refuse, fipa:subscribe, fipa:cancel .
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Collaboration crosswalk — organization + enrollment (spec 325 §4.2).
|
|
2
|
+
|
|
3
|
+
@prefix aporg: <https://agenticprimitives.dev/ns/org#> .
|
|
4
|
+
@prefix apsit: <https://agenticprimitives.dev/ns/situation#> .
|
|
5
|
+
@prefix apdel: <https://agenticprimitives.dev/ns/delegation#> .
|
|
6
|
+
@prefix apent: <https://agenticprimitives.dev/ns/entitlement#> .
|
|
7
|
+
@prefix org: <https://www.w3.org/ns/org#> .
|
|
8
|
+
@prefix as: <https://www.w3.org/ns/activitystreams#> .
|
|
9
|
+
@prefix dul: <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#> .
|
|
10
|
+
@prefix gufo: <https://w3id.org/vocab/gufo#> .
|
|
11
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
12
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
13
|
+
|
|
14
|
+
<> rdfs:comment "Organization profile: W3C ORG + Situation/Relator patterns. AP adds enrollment evidence, privacy, authority materialization." .
|
|
15
|
+
|
|
16
|
+
aporg:OrganizationMembership skos:closeMatch org:Membership ;
|
|
17
|
+
rdfs:seeAlso <https://www.w3.org/TR/vocab-org/#class-membership> ,
|
|
18
|
+
dul:Situation , gufo:Relator ;
|
|
19
|
+
rdfs:comment "AP: private-by-default Situation with memberAgent + organizationAgent + enrollment refs." .
|
|
20
|
+
|
|
21
|
+
aporg:memberAgent skos:closeMatch org:member .
|
|
22
|
+
aporg:organizationAgent skos:closeMatch org:organization .
|
|
23
|
+
aporg:assignedRole skos:closeMatch org:role .
|
|
24
|
+
|
|
25
|
+
aporg:OrganizationRoleDefinition skos:closeMatch org:Role ;
|
|
26
|
+
rdfs:seeAlso <https://www.w3.org/TR/vocab-org/#class-role> .
|
|
27
|
+
|
|
28
|
+
aporg:OrganizationalPost skos:closeMatch org:Post ;
|
|
29
|
+
rdfs:seeAlso <https://www.w3.org/TR/vocab-org/#class-post> .
|
|
30
|
+
|
|
31
|
+
aporg:RoleAssignment skos:closeMatch org:Membership ;
|
|
32
|
+
rdfs:seeAlso dul:Situation ;
|
|
33
|
+
rdfs:comment "Dependent Situation on membership; materializedBy Delegation — not ORG alone." .
|
|
34
|
+
|
|
35
|
+
aporg:materializedByDelegation rdfs:seeAlso apdel:Delegation ;
|
|
36
|
+
rdfs:comment "Role → authority bridge (spec 325 §6.1)." .
|
|
37
|
+
|
|
38
|
+
aporg:supportedByEntitlement rdfs:seeAlso apent:AccessEntitlement .
|
|
39
|
+
|
|
40
|
+
# Enrollment ↔ ActivityStreams social activities
|
|
41
|
+
aporg:MembershipInvitation skos:closeMatch as:Invite .
|
|
42
|
+
aporg:MembershipApplication skos:closeMatch as:Join .
|
|
43
|
+
aporg:EnrollmentDecision skos:closeMatch as:Accept, as:Reject .
|
|
44
|
+
aporg:MembershipTermination skos:closeMatch as:Leave, as:Remove .
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Collaboration crosswalk — protocol bindings (spec 325 §4.7).
|
|
2
|
+
# Bindings are adapter targets; ontology stays transport-agnostic.
|
|
3
|
+
|
|
4
|
+
@prefix apfab: <https://agenticprimitives.dev/ns/fabric#> .
|
|
5
|
+
@prefix apful: <https://agenticprimitives.dev/ns/fulfillment#> .
|
|
6
|
+
@prefix apmsg: <https://agenticprimitives.dev/ns/messaging#> .
|
|
7
|
+
@prefix approf: <https://agenticprimitives.dev/ns/profile#> .
|
|
8
|
+
@prefix aps: <https://agenticprimitives.dev/ns/skill#> .
|
|
9
|
+
@prefix a2a: <https://google.github.io/A2A/specification#> .
|
|
10
|
+
@prefix mcp: <https://modelcontextprotocol.io/specification#> .
|
|
11
|
+
@prefix oasf: <https://schema.oasf.outshift.com/#> .
|
|
12
|
+
@prefix ofp: <https://github.com/LlamaIndex/open-floor-protocol#> .
|
|
13
|
+
@prefix nlip: <https://ecma-international.org/publications-and-standards/standards/ecma-xxx/> .
|
|
14
|
+
@prefix activitypub: <https://www.w3.org/TR/activitypub/> .
|
|
15
|
+
@prefix anp: <https://agent-network-protocol.com/spec#> .
|
|
16
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
17
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
18
|
+
|
|
19
|
+
<> rdfs:comment "Protocol projection map. Discovery finds candidates; AP gates decide authority." .
|
|
20
|
+
|
|
21
|
+
apfab:InteractionExchange skos:closeMatch a2a:Task ;
|
|
22
|
+
rdfs:seeAlso ofp:ConversationEnvelope .
|
|
23
|
+
|
|
24
|
+
apfab:ExchangeEnvelope skos:closeMatch a2a:Message ;
|
|
25
|
+
rdfs:seeAlso nlip:Message , ofp:Event .
|
|
26
|
+
|
|
27
|
+
apmsg:CommunicativeAct rdfs:seeAlso ofp:Event , a2a:Message .
|
|
28
|
+
|
|
29
|
+
approf:AgentCardProjection skos:closeMatch a2a:AgentCard, oasf:AgentRecord, ofp:AssistantManifest .
|
|
30
|
+
|
|
31
|
+
aps:SkillProtocolProjection skos:closeMatch a2a:AgentSkill, oasf:Skill .
|
|
32
|
+
|
|
33
|
+
aps:CapabilityGrounding skos:closeMatch mcp:Tool ;
|
|
34
|
+
rdfs:comment "MCP Tool is ONE operation grounding a CapabilityDefinition — not the capability itself." .
|
|
35
|
+
|
|
36
|
+
aps:SkillGrounding rdfs:subClassOf aps:CapabilityGrounding ; owl:deprecated true .
|
|
37
|
+
|
|
38
|
+
apful:Task skos:closeMatch a2a:Task .
|
|
39
|
+
apful:Message skos:closeMatch a2a:Message .
|
|
40
|
+
apful:Artifact skos:closeMatch a2a:Artifact .
|
|
41
|
+
|
|
42
|
+
activitypub:Actor rdfs:seeAlso approf:AgentCardProjection ;
|
|
43
|
+
rdfs:comment "ActivityPub actor URI is a communication/discovery facet — not canonical identity." .
|
|
44
|
+
|
|
45
|
+
anp:AgentDescription rdfs:seeAlso approf:AgentCardProjection ;
|
|
46
|
+
rdfs:comment "ANP adapter target (external integration repo per ADR-0037)." .
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Collaboration crosswalk — capabilities + projections (spec 325 §4.5; ADR-0051).
|
|
2
|
+
|
|
3
|
+
@prefix aps: <https://agenticprimitives.dev/ns/skill#> .
|
|
4
|
+
@prefix apint: <https://agenticprimitives.dev/ns/intent#> .
|
|
5
|
+
@prefix apres: <https://agenticprimitives.dev/ns/resolution#> .
|
|
6
|
+
@prefix owls: <http://www.daml.org/services/owl-s/1.2/#> .
|
|
7
|
+
@prefix wsmo: <http://www.wsmo.org/ns/d2rl#> .
|
|
8
|
+
@prefix sawsdl: <http://www.w3.org/ns/sawsdl#> .
|
|
9
|
+
@prefix wot: <https://www.w3.org/2019/wot/td#> .
|
|
10
|
+
@prefix oasf: <https://schema.oasf.outshift.com/#> .
|
|
11
|
+
@prefix a2a: <https://google.github.io/A2A/specification#> .
|
|
12
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
13
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
14
|
+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
|
15
|
+
|
|
16
|
+
<> rdfs:comment "Capability profile: CapabilityDefinition is canonical; OASF/A2A/MCP are projections." .
|
|
17
|
+
|
|
18
|
+
aps:Skill rdfs:seeAlso owls:Service ;
|
|
19
|
+
rdfs:comment "On-chain capability definition anchor (spec 251); not the full semantic profile." .
|
|
20
|
+
|
|
21
|
+
aps:CapabilityDefinition skos:closeMatch owls:ServiceProfile, wot:ActionAffordance, oasf:Skill ;
|
|
22
|
+
rdfs:seeAlso <../../specs/325-agentic-primitives-collaboration-profile.md#45-skill-profile-a2a-wave-foundation> ;
|
|
23
|
+
rdfs:comment "Stable AP semantic capability — richer than A2A AgentSkill advertisement." .
|
|
24
|
+
|
|
25
|
+
aps:AgentSkillDefinition rdfs:subClassOf aps:CapabilityDefinition ; owl:deprecated true .
|
|
26
|
+
|
|
27
|
+
aps:CapabilityGrounding skos:closeMatch owls:ServiceGrounding, wot:Form ;
|
|
28
|
+
rdfs:seeAlso sawsdl:Lifting , sawsdl:Lowering .
|
|
29
|
+
|
|
30
|
+
aps:SkillGrounding rdfs:subClassOf aps:CapabilityGrounding ; owl:deprecated true .
|
|
31
|
+
|
|
32
|
+
aps:CapabilityProtocolProjection skos:closeMatch a2a:AgentSkill, oasf:Skill ;
|
|
33
|
+
rdfs:comment "OASF skill taxon or A2A AgentSkill descriptor — adapter output ONLY." .
|
|
34
|
+
|
|
35
|
+
aps:SkillProtocolProjection rdfs:subClassOf aps:CapabilityProtocolProjection ; owl:deprecated true .
|
|
36
|
+
|
|
37
|
+
aps:semanticType rdfs:seeAlso sawsdl:modelReference .
|
|
38
|
+
|
|
39
|
+
aps:IntentCapabilityMatch skos:closeMatch wsmo:Mediator ;
|
|
40
|
+
rdfs:seeAlso apres:Resolver ;
|
|
41
|
+
rdfs:comment "Intent → capability bridge evidence (spec 325 §6.2)." .
|
|
42
|
+
|
|
43
|
+
aps:IntentSkillMatch rdfs:subClassOf aps:IntentCapabilityMatch ; owl:deprecated true .
|
|
44
|
+
|
|
45
|
+
apint:InvokeSkillIntent rdfs:seeAlso aps:CapabilityDefinition .
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Collaboration Profile — document of record (spec 325; ADR-0049).
|
|
2
|
+
# Machine-readable index of crosswalk sections. AP T-box stays native; this file
|
|
3
|
+
# links profile sections to mapping artifacts and external pattern families.
|
|
4
|
+
|
|
5
|
+
@prefix apcollab: <https://agenticprimitives.dev/ns/collaboration#> .
|
|
6
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
7
|
+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
|
8
|
+
@prefix dcterms: <http://purl.org/dc/terms/> .
|
|
9
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
10
|
+
|
|
11
|
+
apcollab: a owl:Ontology ;
|
|
12
|
+
rdfs:label "Agentic Primitives Collaboration Profile" ;
|
|
13
|
+
owl:versionInfo "0.1.0" ;
|
|
14
|
+
dcterms:title "Agentic Primitives Collaboration Profile" ;
|
|
15
|
+
dcterms:created "2026-07-13"^^<http://www.w3.org/2001/XMLSchema#date> ;
|
|
16
|
+
rdfs:seeAlso <../../specs/325-agentic-primitives-collaboration-profile.md> ;
|
|
17
|
+
rdfs:comment "Interoperability profile over external standards. Pattern capture via skos:closeMatch — not owl:imports of upper ontologies (ADR-0049)." .
|
|
18
|
+
|
|
19
|
+
apcollab:CollaborationProfile a skos:ConceptScheme ;
|
|
20
|
+
rdfs:label "Collaboration Profile sections" ;
|
|
21
|
+
skos:hasTopConcept apcollab:ActorProfile, apcollab:OrganizationProfile, apcollab:MessagingProfile,
|
|
22
|
+
apcollab:IntentProfile, apcollab:SkillProfile, apcollab:AuthorityProfile, apcollab:ProtocolBindings .
|
|
23
|
+
|
|
24
|
+
apcollab:ActorProfile a skos:Concept ; skos:inScheme apcollab:CollaborationProfile ;
|
|
25
|
+
skos:prefLabel "Actor profile" ;
|
|
26
|
+
rdfs:seeAlso <collaboration-crosswalk-actors.ttl> ;
|
|
27
|
+
skos:definition "Universal Agent (Person/Organization/Service); PROV-O + ActivityStreams pattern alignment." .
|
|
28
|
+
|
|
29
|
+
apcollab:OrganizationProfile a skos:Concept ; skos:inScheme apcollab:CollaborationProfile ;
|
|
30
|
+
skos:prefLabel "Organization profile" ;
|
|
31
|
+
rdfs:seeAlso <collaboration-crosswalk-organization.ttl> ;
|
|
32
|
+
skos:definition "Membership, roles, posts, enrollment; W3C ORG + DOLCE/DnS Situation patterns." .
|
|
33
|
+
|
|
34
|
+
apcollab:MessagingProfile a skos:Concept ; skos:inScheme apcollab:CollaborationProfile ;
|
|
35
|
+
skos:prefLabel "Messaging profile" ;
|
|
36
|
+
rdfs:seeAlso <collaboration-crosswalk-messaging.ttl> ;
|
|
37
|
+
skos:definition "CommunicativeAct, Conversation, Topic, Thread; FIPA + SIOC + Open Floor patterns." .
|
|
38
|
+
|
|
39
|
+
apcollab:IntentProfile a skos:Concept ; skos:inScheme apcollab:CollaborationProfile ;
|
|
40
|
+
skos:prefLabel "Intent profile" ;
|
|
41
|
+
rdfs:seeAlso <collaboration-crosswalk-intent.ttl> ;
|
|
42
|
+
skos:definition "Intent hierarchy; ValueFlows + WSMO Goal mediation patterns." .
|
|
43
|
+
|
|
44
|
+
apcollab:SkillProfile a skos:Concept ; skos:inScheme apcollab:CollaborationProfile ;
|
|
45
|
+
skos:prefLabel "Capability profile" ;
|
|
46
|
+
rdfs:seeAlso <collaboration-crosswalk-skills.ttl> ;
|
|
47
|
+
skos:definition "CapabilityDefinition semantic source; OWL-S/SAWSDL/WoT/OASF/A2A projection patterns." .
|
|
48
|
+
|
|
49
|
+
apcollab:AuthorityProfile a skos:Concept ; skos:inScheme apcollab:CollaborationProfile ;
|
|
50
|
+
skos:prefLabel "Authority profile" ;
|
|
51
|
+
rdfs:seeAlso <collaboration-crosswalk-authority.ttl> ;
|
|
52
|
+
skos:definition "Delegation, Entitlement, VC attestation, ODRL policy projection; role materialization bridge." .
|
|
53
|
+
|
|
54
|
+
apcollab:ProtocolBindings a skos:Concept ; skos:inScheme apcollab:CollaborationProfile ;
|
|
55
|
+
skos:prefLabel "Protocol bindings" ;
|
|
56
|
+
rdfs:seeAlso <collaboration-crosswalk-protocols.ttl> ;
|
|
57
|
+
skos:definition "A2A, MCP, OASF, Open Floor, NLIP, ActivityPub, ANP as ExchangeEnvelope bindings — not ontology core." .
|
|
58
|
+
|
|
59
|
+
apcollab:RoleToAuthorityBridge a skos:Concept ; skos:inScheme apcollab:CollaborationProfile ;
|
|
60
|
+
skos:prefLabel "Role → authority bridge" ;
|
|
61
|
+
skos:definition "RoleAssignment materializedBy Delegation, supportedBy Entitlement — beyond W3C ORG." .
|
|
62
|
+
|
|
63
|
+
apcollab:IntentToSkillBridge a skos:Concept ; skos:inScheme apcollab:CollaborationProfile ;
|
|
64
|
+
skos:prefLabel "Intent → capability bridge" ;
|
|
65
|
+
skos:definition "IntentCapabilityMatch proves semantic fit between Intent and CapabilityDefinition in organizational context." .
|
|
66
|
+
|
|
67
|
+
apcollab:GuidanceSkillProfile a skos:Concept ; skos:inScheme apcollab:CollaborationProfile ;
|
|
68
|
+
skos:prefLabel "Agent Skill package profile" ;
|
|
69
|
+
rdfs:seeAlso <collaboration-crosswalk-guidance.ttl> ;
|
|
70
|
+
skos:definition "Agent Skill packages (SKILL.md) vs aps: CapabilityDefinition (ADR-0050, ADR-0051)." .
|
|
71
|
+
|
|
72
|
+
apcollab:ConversationToExecutionBridge a skos:Concept ; skos:inScheme apcollab:CollaborationProfile ;
|
|
73
|
+
skos:prefLabel "Conversation → execution bridge" ;
|
|
74
|
+
skos:definition "ExchangeEnvelope → CommunicativeAct → Intent → grounded skill invocation → Outcome." .
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenticprimitives/ontology",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.17",
|
|
4
4
|
"description": "Monorepo-wide formal vocabulary (RDFS/OWL T-box + SHACL/SKOS C-box + A-box fixtures) for agentic primitives. Off-chain source of truth the on-chain ontology (ADR-0009) instantiates. Ships TTL/JSON-LD artifacts + typed IRI constants.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
# Actor context + portable authority chain T-box — spec 326 W1 (ADR-0052).
|
|
2
|
+
#
|
|
3
|
+
# The vocabulary of "who is answerable, who acts, which instance runs, and how external identifiers relate
|
|
4
|
+
# WITHOUT identifier equality." Every term is dual-grounded to a web2 IAM/legal concept AND a web3 concept in
|
|
5
|
+
# `mappings/actor-context-standards.ttl` (+ the machine-readable `GROUNDED_VOCABULARY` TS export). Structural
|
|
6
|
+
# grounding here is PROV-O. Roles are NOT authority; presentation is NOT authority; a binding is NOT equality.
|
|
7
|
+
|
|
8
|
+
@prefix apactor: <https://agenticprimitives.dev/ns/actor#> .
|
|
9
|
+
@prefix ap: <https://agenticprimitives.dev/ns/core#> .
|
|
10
|
+
@prefix apsit: <https://agenticprimitives.dev/ns/situation#> .
|
|
11
|
+
@prefix apdel: <https://agenticprimitives.dev/ns/delegation#> .
|
|
12
|
+
@prefix prov: <http://www.w3.org/ns/prov#> .
|
|
13
|
+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
|
14
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
15
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
16
|
+
|
|
17
|
+
<https://agenticprimitives.dev/ns/actor> a owl:Ontology ;
|
|
18
|
+
rdfs:label "Actor context and portable authority chain (spec 326)" ;
|
|
19
|
+
rdfs:comment "Explicit actor roles, typed cross-bindings, portable authority-chain projection. Web3 authority is sole authority (ADR-0041); these terms carry CONTEXT and EVIDENCE, never a competing authority source." .
|
|
20
|
+
|
|
21
|
+
# ─── Anchors ─────────────────────────────────────────────────────────────────
|
|
22
|
+
|
|
23
|
+
apactor:AccountabilityRoot a owl:Class ;
|
|
24
|
+
rdfs:subClassOf prov:Agent ;
|
|
25
|
+
rdfs:label "AccountabilityRoot" ;
|
|
26
|
+
rdfs:comment "The durable anchor custody / revocation / dispute / audit always trace back to — the CAIP-10 Smart Agent. Web2: the accountable party (GDPR controller); web3: the ERC-4337 account. NOT the default presentation identifier (ADR-0010 amendment)." .
|
|
27
|
+
|
|
28
|
+
apactor:PresentationIdentifier a owl:Class ;
|
|
29
|
+
rdfs:subClassOf ap:Facet ;
|
|
30
|
+
rdfs:label "PresentationIdentifier" ;
|
|
31
|
+
rdfs:comment "What a specific counterparty or public surface is shown in one context — a name, a relationship-scoped pseudonym, or a predicate proof. A FACET that points at the AccountabilityRoot; chosen per reliance class; NEVER authority (ADR-0010 amendment, ADR-0020)." .
|
|
32
|
+
|
|
33
|
+
# ─── Subject references + cross-binding ──────────────────────────────────────
|
|
34
|
+
|
|
35
|
+
apactor:SubjectRef a owl:Class ;
|
|
36
|
+
rdfs:subClassOf prov:Entity ;
|
|
37
|
+
rdfs:label "SubjectRef" ;
|
|
38
|
+
rdfs:comment "A reference to a subject in any trust domain AP recognizes (caip10 / oidc / did / spiffe / oauth-agent-instance). Ring 0 uses the caip10 SubjectRef for authority; the rest appear in bindings + projections only." .
|
|
39
|
+
|
|
40
|
+
apactor:SubjectBinding a owl:Class ;
|
|
41
|
+
rdfs:subClassOf prov:Entity ;
|
|
42
|
+
rdfs:label "SubjectBinding" ;
|
|
43
|
+
rdfs:comment "A signed, scoped, revocable RELATIONSHIP between two SubjectRefs (a proved cross-domain link). Bilateral (both sides sign one digest) is strongest. NEVER owl:sameAs / identifier equality — that is the whole point (ADR-0052 §3)." .
|
|
44
|
+
|
|
45
|
+
apactor:AgentInstance a owl:Class ;
|
|
46
|
+
rdfs:subClassOf prov:Entity ;
|
|
47
|
+
rdfs:label "AgentInstance" ;
|
|
48
|
+
rdfs:comment "A particular task / session / process / container runtime. Web2: a WIMSE/SPIFFE workload instance. Distinct from the account; workload attestations (TEE, image digest) are FACETS of the instance, not persistent agent identity." .
|
|
49
|
+
|
|
50
|
+
apactor:ConfirmationKey a owl:Class ;
|
|
51
|
+
rdfs:subClassOf prov:Entity ;
|
|
52
|
+
rdfs:label "ConfirmationKey" ;
|
|
53
|
+
rdfs:comment "A key proving possession — NOT who the agent is. Web2: OAuth/OIDC cnf (RFC 7800); web3: the session-key / passkey signer. Rotating it must not change agent or instance identity." .
|
|
54
|
+
|
|
55
|
+
# ─── The per-hop context bundle + portable chain ─────────────────────────────
|
|
56
|
+
|
|
57
|
+
apactor:ActorContext a owl:Class ;
|
|
58
|
+
rdfs:subClassOf prov:Entity ;
|
|
59
|
+
rdfs:label "ActorContext" ;
|
|
60
|
+
rdfs:comment "The explicit actor roles carried on one hop. Roles may overlap and are INDEPENDENT of AgentKind. accountabilityRoot ≠ rootPrincipal: the anchor is durable while the principal-as-represented may be pairwise/pseudonymous." .
|
|
61
|
+
|
|
62
|
+
apactor:AuthorityChainEnvelope a owl:Class ;
|
|
63
|
+
rdfs:subClassOf prov:Entity ;
|
|
64
|
+
rdfs:label "AuthorityChainEnvelope" ;
|
|
65
|
+
rdfs:comment "Portable ordered projection of the on-chain Delegation parent-hash chain (built in @agenticprimitives/delegation, W2). The chain is the source of truth; the envelope is the portable evidence — it never widens authority." .
|
|
66
|
+
|
|
67
|
+
# ─── Role properties (on ActorContext) — CONTEXT, not authority ──────────────
|
|
68
|
+
|
|
69
|
+
apactor:accountabilityRoot a owl:ObjectProperty ;
|
|
70
|
+
rdfs:domain apactor:ActorContext ; rdfs:range apactor:SubjectRef ;
|
|
71
|
+
rdfs:label "accountabilityRoot" ;
|
|
72
|
+
rdfs:comment "The durable anchor this hop is answerable to." .
|
|
73
|
+
|
|
74
|
+
apactor:rootPrincipal a owl:ObjectProperty ;
|
|
75
|
+
rdfs:domain apactor:ActorContext ; rdfs:range apactor:SubjectRef ;
|
|
76
|
+
rdfs:label "rootPrincipal" ;
|
|
77
|
+
rdfs:comment "The human/org ultimately represented — MAY be pairwise / pseudonymous. Web2: OAuth / agency-law principal." .
|
|
78
|
+
|
|
79
|
+
apactor:originatingAgent a owl:ObjectProperty ;
|
|
80
|
+
rdfs:domain apactor:ActorContext ; rdfs:range apactor:SubjectRef ;
|
|
81
|
+
rdfs:label "originatingAgent" ;
|
|
82
|
+
rdfs:comment "The agent that started the overall task." .
|
|
83
|
+
|
|
84
|
+
apactor:actingAgent a owl:ObjectProperty ;
|
|
85
|
+
rdfs:domain apactor:ActorContext ; rdfs:range apactor:SubjectRef ;
|
|
86
|
+
rdfs:label "actingAgent" ;
|
|
87
|
+
rdfs:comment "The agent performing THIS hop (may be a sub-agent). Web2: OAuth token-exchange act actor." .
|
|
88
|
+
|
|
89
|
+
apactor:agentInstance a owl:ObjectProperty ;
|
|
90
|
+
rdfs:domain apactor:ActorContext ; rdfs:range apactor:AgentInstance ;
|
|
91
|
+
rdfs:label "agentInstance" ;
|
|
92
|
+
rdfs:comment "The runtime instance performing this hop." .
|
|
93
|
+
|
|
94
|
+
apactor:confirmationKey a owl:ObjectProperty ;
|
|
95
|
+
rdfs:domain apactor:ActorContext ; rdfs:range apactor:ConfirmationKey ;
|
|
96
|
+
rdfs:label "confirmationKey" ;
|
|
97
|
+
rdfs:comment "The possession key bound to this hop — proves control, not identity." .
|
|
98
|
+
|
|
99
|
+
# ─── Binding relationship properties (typed cross-bindings) ──────────────────
|
|
100
|
+
|
|
101
|
+
apactor:accountabilityRootOf a owl:ObjectProperty ;
|
|
102
|
+
rdfs:domain apactor:SubjectRef ; rdfs:range apactor:SubjectRef ;
|
|
103
|
+
rdfs:label "accountabilityRootOf" ;
|
|
104
|
+
rdfs:comment "SubjectBinding relationship: the subject is the durable accountability anchor of the object." .
|
|
105
|
+
|
|
106
|
+
apactor:representsPrincipal a owl:ObjectProperty ;
|
|
107
|
+
rdfs:domain apactor:SubjectRef ; rdfs:range apactor:SubjectRef ;
|
|
108
|
+
rdfs:label "representsPrincipal" ;
|
|
109
|
+
rdfs:comment "SubjectBinding relationship: the subject (a Person/Org SA) represents the object principal — may be pairwise." .
|
|
110
|
+
|
|
111
|
+
apactor:agentIdentityOf a owl:ObjectProperty ;
|
|
112
|
+
rdfs:domain apactor:SubjectRef ; rdfs:range apactor:SubjectRef ;
|
|
113
|
+
rdfs:label "agentIdentityOf" ;
|
|
114
|
+
rdfs:comment "SubjectBinding relationship: an external agent identity (e.g. did:aip, registry handle) is a facet of the object SA — bound by proof, never equal." .
|
|
115
|
+
|
|
116
|
+
apactor:runtimeInstanceOf a owl:ObjectProperty ;
|
|
117
|
+
rdfs:domain apactor:SubjectRef ; rdfs:range apactor:SubjectRef ;
|
|
118
|
+
rdfs:label "runtimeInstanceOf" ;
|
|
119
|
+
rdfs:comment "SubjectBinding relationship: a workload/runtime instance is running as the object agent (web2: WIMSE workload ↔ agent)." .
|
|
120
|
+
|
|
121
|
+
apactor:controlledBy a owl:ObjectProperty ;
|
|
122
|
+
rdfs:domain apactor:SubjectRef ; rdfs:range apactor:SubjectRef ;
|
|
123
|
+
rdfs:label "controlledBy" ;
|
|
124
|
+
rdfs:comment "SubjectBinding relationship: the subject is controlled by the object under custody policy (a control credential — never a delegation)." .
|
|
125
|
+
|
|
126
|
+
apactor:delegatedTo a owl:ObjectProperty ;
|
|
127
|
+
rdfs:domain apactor:SubjectRef ; rdfs:range apactor:SubjectRef ;
|
|
128
|
+
rdfs:label "delegatedTo" ;
|
|
129
|
+
rdfs:comment "SubjectBinding relationship: authority was delegated from the subject to the object (projection of an apdel:Delegation; authority itself stays on-chain)." .
|
|
130
|
+
|
|
131
|
+
apactor:executedByWorkload a owl:ObjectProperty ;
|
|
132
|
+
rdfs:domain apactor:SubjectRef ; rdfs:range apactor:SubjectRef ;
|
|
133
|
+
rdfs:label "executedByWorkload" ;
|
|
134
|
+
rdfs:comment "SubjectBinding relationship: the operation was executed by the object workload on behalf of the subject agent." .
|