EdgePress

Developers

Every EdgePress tenant ships with a JSON API.

Same API the dashboard uses. Publish, edit, and manage content from anything that can send HTTP — a script, a workflow, an agent, or the first-party Claude Code plugin below.

Tenant API

Base URL: https://<your-tenant>.edgepress.cc/api/v1. Auth is a personal access token you mint in Account → API tokens. Full interactive reference — every endpoint, request/response schema, try-it panel — lives at api-docs.edgepress.cc.

List posts

curl https://<your-tenant>.edgepress.cc/api/v1/posts \
  -H "Authorization: Bearer $EDGEPRESS_TOKEN"

Create a post

curl -X POST https://<your-tenant>.edgepress.cc/api/v1/posts \
  -H "Authorization: Bearer $EDGEPRESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Hello from the API",
    "content": "<p>Published in one HTTP call.</p>",
    "status": "published"
  }'

The same surface covers pages, media, categories, tags, users, podcasts, daily cartoons, and settings. See the full spec at api-docs.edgepress.cc.

AI host integrations

Talk to your tenant from any AI host.

First-party integrations for every major AI surface — CLI tools, SDKs, and platform agents. Each one wraps the same tenant API with auth, domain knowledge, and a long-running workflow pattern.

Claude Code

Claude Code plugin

Plugin with domain skill, edgepress-workflow subagent, and slash commands.

/plugin marketplace add edgepress-cc/claude-code-edgepress
/plugin install edgepress@claude-code-edgepress

Source: github.com/edgepress-cc/claude-code-edgepress

Codex CLI

Codex CLI plugin

Plugin for OpenAI Codex CLI with AGENTS.md + edgepress-workflow for long-running jobs.

codex plugin install github://edgepress-cc/codex-cli-edgepress

Source: github.com/edgepress-cc/codex-cli-edgepress

Gemini CLI

Gemini CLI extension

Extension for Google Gemini CLI with SKILL.md domain knowledge and iterate-in-batches guidance.

gemini extensions install github://edgepress-cc/gemini-cli-edgepress

Source: github.com/edgepress-cc/gemini-cli-edgepress

ChatGPT

Custom GPT template

Paste-in GPT configuration with full OpenAPI spec, system instructions, and session-only endpoint refusal.

See INSTALL.md in the repo for setup steps

Source: github.com/edgepress-cc/chatgpt-gpt-edgepress

OpenAI SDK

OpenAI SDK package

npm package @edgepress/openai-sdk — 10 tool definitions and an agent-loop example for OpenAI SDK apps.

npm i openai github:edgepress-cc/openai-sdk-edgepress

Source: github.com/edgepress-cc/openai-sdk-edgepress

Gemini SDK

Gemini SDK package

npm package @edgepress/gemini-sdk — 10 tool definitions for Google Generative AI SDK apps.

npm i @google/generative-ai github:edgepress-cc/gemini-sdk-edgepress

Source: github.com/edgepress-cc/gemini-sdk-edgepress

Vertex AI

Vertex Agent Builder tools

10 YAML tool definitions for Google Vertex AI Agent Builder with env-var auth and a one-command installer.

git clone https://github.com/edgepress-cc/vertex-agent-edgepress
cd vertex-agent-edgepress && ./install.sh

Source: github.com/edgepress-cc/vertex-agent-edgepress