DEIP Skills for AI Agents — GitHub
Modular documentation that enables AI agents to interact with DEIP (Digital Ecosystem Intelligence Platform) — mapping, analyzing, and optimizing digital tool ecosystems.
Skills are structured markdown files that teach AI agents how to use DEIP's APIs. Each skill covers a specific domain (workspaces, items, canvases, etc.) and includes:
- REST API endpoints — Direct HTTP calls (budget-efficient, no tool overhead)
- MCP tool references — For environments supporting Model Context Protocol
- Examples & patterns — Request/response samples, workflow guides
Linux / macOS:
# From your project root
mkdir -p .agent/skills
cp -r skills/deip-* .agent/skills/Windows (PowerShell):
# From your project root
New-Item -ItemType Directory -Force -Path .agent\skills
Copy-Item -Recurse skills\deip-* .agent\skills\Linux / macOS:
mkdir -p ~/.gemini/antigravity/skills
cp -r skills/deip-* ~/.gemini/antigravity/skills/Windows (PowerShell):
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.gemini\antigravity\skills"
Copy-Item -Recurse skills\deip-* "$env:USERPROFILE\.gemini\antigravity\skills\"Include the skill files in your agent's context or system prompt. Each SKILL.md is self-contained and can be loaded individually.
All DEIP API calls require an API key:
- Log in to DEIP
- Open Settings → API Keys tab
- Click Create API Key — select permissions (read, write, delete)
- Copy the key (starts with
deip_) — it won't be shown again
X-API-Key: deip_your_api_key_here
Content-Type: application/json
| Approach | Agent Token Cost | API Cost | Best For |
|---|---|---|---|
| REST API (recommended) | Low — agent reads docs once, constructs fetch/curl calls |
Free | Budget-efficient, high-volume workflows |
| MCP Server | Higher — tool discovery + per-call reasoning tokens | Free | Auto-discovery, tool-native environments |
The agent reads the skill documentation, then makes direct HTTP calls. No per-tool reasoning overhead.
# Example: List workspaces
curl -H "X-API-Key: deip_xxx" \
https://api.deip.app/workspaces
# Example: Create an item
curl -X POST -H "X-API-Key: deip_xxx" \
-H "Content-Type: application/json" \
-d '{"name":"Slack","type":"service","subcategoryId":"sub-uuid"}' \
https://api.deip.app/workspaces/{workspace_id}/itemsFor environments that support MCP tool calling:
{
"mcpServers": {
"deip": {
"type": "http",
"url": "https://mcp.deip.app",
"headers": {
"X-API-Key": "deip_your_api_key_here"
}
}
}
}| Skill | Description | Key Operations |
|---|---|---|
| deip-overview | Core concepts, auth, error recovery | Platform architecture |
| deip-managing-workspaces | Workspace CRUD, categories, currencies | Create/manage ecosystems |
| deip-managing-items | Items (tools, services, people) | Bulk create, parent-child |
| deip-building-canvases | Visual diagrams, nodes, edges | Relationship mapping |
| deip-analytics-context | Summaries, knowledge base | Cost analysis, learnings |
| deip-reminders | Automated notifications | Payment/renewal alerts |
| deip-global-catalog | Item enrichment catalog | Auto-fill metadata |
| datarooms | Data Room module — blocks, ingest, knowledge, invites, public portal | Founder/investor room ops |
deip-overview/
├── SKILL.md # Main skill file (required)
└── error-handling.md # Supporting reference docs
Each SKILL.md has YAML frontmatter:
---
name: deip-overview
description: Core concepts and authentication for DEIP.
---When skills are updated, pull the latest version:
# If cloned as a git repo
cd .agent/skills # or ~/.gemini/antigravity/skills
git pull
# Or re-download and replaceThese skills are provided for use with DEIP platform accounts. An active DEIP account and API key are required.
Last synced: 2026-05-18 (removed internal askfounder skills)