- Provider
- dart
- Category
- Other
- Setup
- One-click OAuth (we host the OAuth app)
- Actions
- 18 available
Quick start
Call Dart from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Dart'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(
"DART_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
OverSkill hosts the OAuth application for Dart. End-users click Connect on the integration card in your app, complete the OAuth flow with Dart, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.
Supported auth schemes: OAUTH2, API_KEY.
Available actions
18 actions exposed via the
Dart integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
DART_ADD_TASK_ATTACHMENT_FROM_URL -
DART_ADD_TASK_COMMENT -
DART_ADD_TASK_TIME_TRACKING -
DART_CREATE_DOC -
DART_CREATE_TASK -
DART_DELETE_DOC -
DART_DELETE_TASK -
DART_GET_CONFIG -
DART_GET_DOC -
DART_GET_TASK -
DART_LIST_COMMENTS -
DART_LIST_DOCS
Show all 18 actions
-
DART_LIST_HELP_CENTER_ARTICLES -
DART_LIST_TASKS -
DART_MOVE_TASK -
DART_RETRIEVE_SKILL_BY_TITLE -
DART_UPDATE_DOC -
DART_UPDATE_TASK
Build with Dart
Open OverSkill, describe what you want to build, and reference Dart in your prompt — the AI will wire up the integration automatically.