Writer integration
Writer is a full-stack generative AI platform for enterprises, offering tools…
- Provider
- writer
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 23 available
Quick start
Call Writer from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Writer'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(
"WRITER_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 Writer 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
23 actions exposed via the
Writer integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
WRITER_ADD_FILE_TO_GRAPH -
WRITER_ANALYZE_IMAGES -
WRITER_ASK_QUESTION_TO_KNOWLEDGE_GRAPH -
WRITER_CHAT_COMPLETION -
WRITER_CREATE_KNOWLEDGE_GRAPH -
WRITER_DELETE_FILE -
WRITER_DELETE_GRAPH -
WRITER_DETECT_AI_CONTENT -
WRITER_DOWNLOAD_FILE -
WRITER_GET_FILE -
WRITER_LIST_APPLICATIONS -
WRITER_LIST_FILES
Show all 23 actions
-
WRITER_LIST_GRAPHS -
WRITER_LIST_MODELS -
WRITER_MEDICAL_COMPREHEND -
WRITER_PARSE_PDF -
WRITER_REMOVE_FILE_FROM_GRAPH -
WRITER_RETRIEVE_GRAPH -
WRITER_TEXT_GENERATION -
WRITER_TRANSLATE_TEXT -
WRITER_UPDATE_GRAPH -
WRITER_UPLOAD_FILE -
WRITER_WEB_SEARCH
Build with Writer
Open OverSkill, describe what you want to build, and reference Writer in your prompt — the AI will wire up the integration automatically.