CrowTerminal integration
AI-powered command line assistant with memory and automation capabilities for…
- Provider
- crowterminal
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 27 available
Quick start
Call CrowTerminal from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to CrowTerminal's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"CROWTERMINAL_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own CrowTerminal API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
27 actions exposed via the
CrowTerminal integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
CROWTERMINAL_ANALYZE_ENGAGEMENT -
CROWTERMINAL_COMPARE_MD -
CROWTERMINAL_CREATE_WEBHOOK -
CROWTERMINAL_DELETE_WEBHOOK -
CROWTERMINAL_GET_BYOK_PLATFORM_INTEL -
CROWTERMINAL_GET_CLIENT_MEMORY_CHANGELOG -
CROWTERMINAL_GET_CLIENT_MEMORY_PATTERN -
CROWTERMINAL_GET_COMPONENTS_STATUS -
CROWTERMINAL_GET_DATA_TYPES -
CROWTERMINAL_GET_INCIDENTS -
CROWTERMINAL_GET_PLATFORM_INTEL -
CROWTERMINAL_GET_SANDBOX_CLIENT
Show all 27 actions
-
CROWTERMINAL_GET_SANDBOX_MEMORY -
CROWTERMINAL_GET_STATUS -
CROWTERMINAL_GET_STATUS_HISTORY -
CROWTERMINAL_GET_UPTIME -
CROWTERMINAL_INGEST_BULK_DATA -
CROWTERMINAL_INGEST_DATA -
CROWTERMINAL_LIST_WEBHOOKS -
CROWTERMINAL_PING_CROWTERMINAL -
CROWTERMINAL_READ_BULK_MEMORY -
CROWTERMINAL_REGISTER_AGENT -
CROWTERMINAL_RUN_SANDBOX_ENGAGEMENT_ANALYSIS -
CROWTERMINAL_TEST_WEBHOOK -
CROWTERMINAL_UPDATE_WEBHOOK -
CROWTERMINAL_VALIDATE_PROPOSED_CHANGES -
CROWTERMINAL_VALIDATE_SANDBOX
Build with CrowTerminal
Open OverSkill, describe what you want to build, and reference CrowTerminal in your prompt — the AI will wire up the integration automatically.