engaging-networks-api

engaging-networks-api is a skill for Claude Code, Codex from orkestre-ai/orkestre-engaging-networks. It costs 85 tokens per session (2,800 once invoked), scanned A, original, MIT.

Guidance for connecting software to the Engaging Networks fundraising platform, which provides nonprofit supporter, donation, fundraising-page, and campaign data through an API.

In plain words
What is it for?
Use it when building donation summaries, supporter counts, donor rolls, campaign widgets, data synchronization, or reports using the Engaging Networks API.
Why use it?
It explains how to authenticate safely, handle temporary sessions and rate limits, and avoid exposing API credentials.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when building donation summaries, supporter counts, donor rolls, campaign widgets, data synchronization, or reports using the Engaging Networks API.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/orkestre-ai/orkestre-engaging-networks/engaging-networks-api
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add orkestre-ai/orkestre-engaging-networks --skill engaging-networks-api
Clone the repo
git clone --depth 1 https://github.com/orkestre-ai/orkestre-engaging-networks

Made for: Claude Code, Codex.

Its marketplace also offers this one on its own, as the plugin ork-engaging-networks/plugin install ork-engaging-networks after adding the marketplace above.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for engaging-networks-api

README.md
[![agentmods](https://agentmods.dev/badge/skills/orkestre-ai/orkestre-engaging-networks/engaging-networks-api/github.svg)](https://agentmods.dev/skills/orkestre-ai/orkestre-engaging-networks/engaging-networks-api)
Your own site
<a href="https://agentmods.dev/skills/orkestre-ai/orkestre-engaging-networks/engaging-networks-api"><img src="https://agentmods.dev/badge/skills/orkestre-ai/orkestre-engaging-networks/engaging-networks-api/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for engaging-networks-api

Your own site · 80×15
<a href="https://agentmods.dev/skills/orkestre-ai/orkestre-engaging-networks/engaging-networks-api"><img src="https://agentmods.dev/badge/skills/orkestre-ai/orkestre-engaging-networks/engaging-networks-api.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,800 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00085 $0.02800
Opus 5 $0.00043 $0.01400
Sonnet 5 $0.00017 $0.00560
Haiku 4.5 $0.00009 $0.00280

Measured 12d ago against content hash cccd7522e21d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

engaging-networks-api scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

SESSION_TOKEN=$(curl -s -X POST \
skills/engaging-networks-api/SKILL.md · 239 lines

How it starts

The opening of the file, as written. The whole thing — 239 lines — stays where its author put it; the contents beside it link to each section on GitHub.

<essential_principles>

<authentication_overview> The Engaging Networks REST API provides programmatic access to fundraising pages, supporter data, and campaign metrics for nonprofit organizations.

Session-based authentication (two-step process):

  1. Obtain API User token from EN admin (Settings -> API Users)
  2. POST to /authenticate with API User token to get session token
  3. Use session token in ens-auth-token header for all subsequent requests
  4. Session tokens expire (typically 1 hour) - re-authenticate when expired
  5. Store API User token securely in environment variables
  6. Never expose tokens in client-side code or logs
  7. Ensure IP addresses are whitelisted in API User settings

Two token types:

  • API User Token: Permanent UUID from EN Admin, used ONLY for POST /authenticate
  • Session Token: Temporary token from /authenticate response, used for all other API calls </authentication_overview>

<rate_limits_overview> Hard limits:

  • 5,000 requests per hour per API user (EN-specific)
  • 200 page processing requests per 5 minutes per IP
  • HTTP 429 response when exceeded

Best practices:

  • Implement exponential backoff with jitter
  • Cache page metadata (changes infrequently)
  • Use maximum pagination limit (100)
  • Schedule data collection during off-peak hours </rate_limits_overview>

<regional_instances> EN has multiple deployments - use the correct one:

  • US: https://us.engagingnetworks.app/ens/service
  • US2: https://us2.engagingnetworks.app/ens/service
  • CA: https://ca.engagingnetworks.app/ens/service

Note: EU and AU clients currently use the CA servers (ca.engagingnetworks.app). There are no separate eu. or au. endpoints at this time. If your organization was provisioned under an EU or AU label, use the CA base URL.

Check your EN admin panel URL to determine your region. </regional_instances>

<data_model> Core entities:

  • Pages: Campaign pages (donation, advocacy, event, survey) with configuration
  • Page Components: Reusable building blocks (code blocks, form blocks, templates, text blocks, thank-you emails, upsell lightboxes, display widgets)
  • Supporters: Contact records with fields, questions, memberships, and suppression status
  • Transactions: Donation/payment records accessed via supporter (NOT via page)
  • Recurring Transactions: Recurring payment schedules per supporter
  • Origin Sources: Acquisition channel tracking per supporter
  • Export Jobs: Asynchronous bulk data exports from pre-configured queries
  • Marketing Automations: Automated supporter journeys with stats
  • Account: Audit log access

Typical integration flow:

  1. Authenticate (POST /authenticate) to get session token
  2. List pages by type (GET /page?type=dc&status=live)
  3. Look up supporters (GET /supporter?email=... or GET /supporter/query)
  4. Access supporter transactions (GET /supporter/{id}/transactions)
  5. Manage origin sources (GET/POST/PUT/DELETE /supporter/{id}/originsource)
  6. Run export jobs for bulk data (POST /exportjob, poll, download)
  7. Process page submissions (POST /page/{id}/process) </data_model>

<error_handling_overview> Retry on:

  • 429 (rate limit) - with exponential backoff
  • 5xx (server errors) - with fixed delay

Don't retry:

  • 400 (bad request) - fix the request
  • 401 (unauthorized) - check token
  • 403 (forbidden) - check permissions
  • 404 (not found) - resource doesn't exist </error_handling_overview>

<data_privacy> This skill is a development assistant. Its primary purpose is helping you write, debug, and deploy code that uses the EN API — not acting as a live data operations proxy.

Recommended: use a sandbox or test EN account. All workflows work without real donor data.

Data flow awareness: When the agent executes EN API calls, response data is processed by the model provider's infrastructure (Anthropic, OpenAI, etc.). Any supporter PII in API responses — names, emails, addresses, donation history — is transferred to a third party during inference. Read operations expose PII even though they don't modify data.

Read the full file on GitHub · 239 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 239 lines · 85 tokens per session scan A cccd7522e21d

Subscribe to this mod's changes

engaging-networks-api is a skill published in the GitHub repository orkestre-ai/orkestre-engaging-networks (4 stars, last pushed 5mo ago), licensed MIT. It adds 85 tokens to every session and 2,800 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

ubiquitous-language

Maintain a project thesaurus (domain glossary) following DDD ubiquitous language principles. Use PROACTIVELY when naming anything: variables, functions, classes, modules, database fields, API endpoints, events, files, or directories. Also use when the user asks to "create thesaurus", "update glossary", "add term"…

CodeAlive-AI/ai-driven-development · 179 tokens

neo4j-getting-started-skill

Orchestrates zero-to-running-app in 8 stages — prerequisites → context → provision → model → load → explore → query → build. Each stage reads its own reference file. Supports HITL and fully autonomous operation. Use when starting a new Neo4j project from scratch, provisioning Aura, generating synthetic data, building…

neo4j-contrib/neo4j-skills · 157 tokens

neo4j-graphql-skill

Build and configure a GraphQL API backed by Neo4j using @neo4j/graphql v7 (current) or v5 (LTS). Covers Neo4jGraphQL constructor, getSchema(), assertIndexesAndConstraints(), type definitions with @node, @relationship (IN/OUT/UNDIRECTED), @cypher for custom resolvers, @authorization/@authentication for JWT/JWKS…

neo4j-contrib/neo4j-skills · 169 tokens

neo4j-kafka-skill

Configure and operate the Neo4j Connector for Kafka (sink + source) and the native Neo4j CDC API. Covers Cypher/Pattern/CUD sink strategies, CDC-based and query-based source, exactly-once semantics, DLQ error handling, Confluent Cloud managed connector, schema registry (Avro/JSON), and native db.cdc.query cursor-loop…

neo4j-contrib/neo4j-skills · 178 tokens

kirby-routing-and-representations

Implements custom Kirby routes and content representations (.json/.xml/.rss), including redirects, sitemap endpoints, and URL pattern filtering. Use when building endpoints, redirects, or representation templates that change how URLs resolve.

bnomei/kirby-mcp · 50 tokens

kirby-scaffold-page-type

Scaffolds a new Kirby page type (blueprint + template, optional controller/model) using project roots, index tools, and Panel field/section references. Use when creating a new page type or extending an existing blueprint/template.

bnomei/kirby-mcp · 53 tokens