@quietloudlab/ai-interaction-atlas 1.0.11 → 1.0.12
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/dist/data.js +39 -0
- package/dist/data.js.map +1 -1
- package/dist/data.mjs +39 -0
- package/dist/data.mjs.map +1 -1
- package/dist/index.js +39 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +39 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/data.js
CHANGED
|
@@ -1445,6 +1445,45 @@ var HUMAN_TASKS = [
|
|
|
1445
1445
|
{ target_id: "task_verify", type: "commonly_preceded_by", strength: "weak", reason: "Automated verification may surface flaggable items." }
|
|
1446
1446
|
]
|
|
1447
1447
|
},
|
|
1448
|
+
{
|
|
1449
|
+
id: "human_delegate",
|
|
1450
|
+
layer_id: "layer_interactive",
|
|
1451
|
+
name: "Delegate Authority",
|
|
1452
|
+
slug: "delegate-authority",
|
|
1453
|
+
task_type: "human",
|
|
1454
|
+
elevator_pitch: "User grants an AI agent bounded authority to act on their behalf\u2014spending caps, scope limits, time windows, or approval thresholds.",
|
|
1455
|
+
example_usage: "Authorizing a shopping agent to purchase items under $50 without confirmation, or letting a coding agent merge PRs that pass all checks.",
|
|
1456
|
+
io_spec: {
|
|
1457
|
+
inputs: {
|
|
1458
|
+
required: [{ id: "data_policy", label: "Authority Scope (caps, allowlists, time bounds)" }],
|
|
1459
|
+
optional: [
|
|
1460
|
+
{ id: "data_config", label: "Budget / Spending Limits" },
|
|
1461
|
+
{ id: "data_policy", label: "Escalation Criteria" }
|
|
1462
|
+
]
|
|
1463
|
+
},
|
|
1464
|
+
constraints: {
|
|
1465
|
+
optional: [
|
|
1466
|
+
{ id: "const_human_loop", label: "Permanent Gate Actions" },
|
|
1467
|
+
{ id: "const_cost_budget", label: "Spending Cap" }
|
|
1468
|
+
]
|
|
1469
|
+
},
|
|
1470
|
+
outputs: {
|
|
1471
|
+
primary: { id: "data_token", label: "Delegation Token / Authority Grant" },
|
|
1472
|
+
metadata: [
|
|
1473
|
+
{ id: "data_log", label: "Delegation Audit Record" },
|
|
1474
|
+
{ id: "data_policy", label: "Scope Boundaries" }
|
|
1475
|
+
]
|
|
1476
|
+
}
|
|
1477
|
+
},
|
|
1478
|
+
common_variants: ["grant_spending_authority", "approve_autonomous_mode", "set_agent_permissions", "escalation_override", "revoke_delegation"],
|
|
1479
|
+
relations: [
|
|
1480
|
+
{ target_id: "human_configure", type: "commonly_preceded_by", strength: "strong", reason: "Boundaries (caps, allowlists, scope) are typically configured before authority is delegated." },
|
|
1481
|
+
{ target_id: "task_act", type: "enables", strength: "strong", reason: "Delegation grants the agent permission to execute actions without per-action approval." },
|
|
1482
|
+
{ target_id: "task_monitor", type: "commonly_followed_by", strength: "strong", reason: "Delegated actions should be monitored for drift, overspend, or scope violations." },
|
|
1483
|
+
{ target_id: "human_stop_process", type: "related_to", strength: "strong", reason: "Revocation is the inverse of delegation\u2014human reclaims authority from the agent." },
|
|
1484
|
+
{ target_id: "human_grant_consent", type: "related_to", strength: "medium", reason: "Consent governs data; delegation governs agency. Both transfer a form of permission, but delegation transfers the right to act." }
|
|
1485
|
+
]
|
|
1486
|
+
},
|
|
1448
1487
|
// =========================================================
|
|
1449
1488
|
// Outbound — user finalizes, refines, exports
|
|
1450
1489
|
// =========================================================
|