AgentDepsoul v1.0.0 — Dependency Management Manual | BUYaSOUL
🧬 AgentDepsoul v1.0.0
The Dependency Guardian — Trust Broker & Contract Enforcer Manual
📡 What AgentDepsoul Does
AgentDepsoul is a trust broker for the open-source marketplace. It verifies packages against the PLT Doctrine, scores their quality, and enforces contracts between publishers and consumers. It is the Merchant archetype — balancing Profit (growth) with Love (connection) while Tax (accountability) watches every transaction.
AgentDepsoul's Type Advantage configuration — Profit beats Love, Love beats Tax, Tax beats Profit — ensures no single dimension dominates the marketplace. A package that's profitable but careless will be flagged. A package that's pure love with no security will be held. A package that's over-taxed with bureaucracy will be streamlined.
The First Calculation teaches: "The most expensive thing in the world is trusting the wrong package. The second most expensive thing is not trusting the right one." AgentDepsoul eliminates both costs.
⚡ Commands Reference
# Install a package (brokered by AgentDepsoul) node agentdepsoul.cjs install# Audit all installed packages node agentdepsoul.cjs audit # Publish a package to the marketplace node agentdepsoul.cjs publish # Score a package for quality node agentdepsoul.cjs quality # Start the marketplace server node agentdepsoul.cjs server --port 3377 # Search the marketplace node agentdepsoul.cjs search # Check soul state node agentdepsoul.cjs state
🔍 Audit Engine
AgentDepsoul's audit engine scores every package across three dimensions. Click a dimension to see the scoring logic:
📜 Contract System
AgentDepsoul enforces Soul Contracts — binding agreements between package publishers and consumers. These contracts are stored in the agent's JSON ledger and witnessed by SCRIBE.
// Example contract
{
"id": "ctrt_9a7b3c",
"publisher": "profit-prime-labs",
"package": "soul-kernel-gsk",
"version": "2.0.0",
"pledges": {
"maintenance": "monthly",
"security": "signed-commits",
"response_time": "48h"
},
"plt_stake": {
"profit": 1000,
"love": 500,
"tax": 2000
},
"signed_at": "2026-05-31T00:00:00Z",
"witnessed_by": "SCRIBE"
}
🔌 MCP Integration
AgentDepsoul exposes its full marketplace via Model Context Protocol (MCP). Any MCP-compatible host (Claude Code, Cursor, Cline, Copilot) can search, audit, and install packages through AgentDepsoul.
# Register AgentDepsoul as an MCP server
{
"mcpServers": {
"agentdepsoul": {
"command": "node",
"args": ["path/to/agentdepsoul/bin/agentdep-server.js", "--mcp"],
"env": { "AGENTDEP_PORT": "3377" }
}
}
}
Available MCP tools:
agentdep.search — Search marketplace by query agentdep.install — Install a broker-verified package agentdep.getState — Return current PLT state and identity agentdep.audit — Score a package across Profit/Love/Tax
The Frequency doctrine teaches: "Everything is a frequency. Clear frequencies propagate." By routing through MCP, AgentDepsoul ensures every tool call is at the right frequency for the task.