Skip to content

martinjokub/deip-skills

Repository files navigation

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.

What Are Skills?

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

Installation

For Google Antigravity IDE

Workspace Scope (per-project)

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\

Global Scope (all projects)

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\"

For Other AI Agents (Claude, GPT, etc.)

Include the skill files in your agent's context or system prompt. Each SKILL.md is self-contained and can be loaded individually.

API Key Setup

All DEIP API calls require an API key:

  1. Log in to DEIP
  2. Open SettingsAPI Keys tab
  3. Click Create API Key — select permissions (read, write, delete)
  4. Copy the key (starts with deip_) — it won't be shown again

Authentication Header

X-API-Key: deip_your_api_key_here
Content-Type: application/json

REST API vs MCP — Which to Use?

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

REST API (Recommended for Cost Efficiency)

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}/items

MCP Server

For environments that support MCP tool calling:

{
  "mcpServers": {
    "deip": {
      "type": "http",
      "url": "https://mcp.deip.app",
      "headers": {
        "X-API-Key": "deip_your_api_key_here"
      }
    }
  }
}

Skills Index

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

Skill File Structure

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.
---

Updating Skills

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 replace

License

These 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)

About

Deip app skills for AI agents.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors