/SKILL.md
Use this skill when the user needs to run or troubleshoot the AutoBlogWriter CLI for auth, workspaces, integrations, ideas, posts, or workflow runs. Prefer machine-readable JSON output and use CLI commands directly instead of re-implementing API logic.
npx skillsauth add auto-blog-writer-app/autoblogwriter-skill autoblogwriter-cliInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill to operate the AutoBlogWriter CLI end-to-end for idea generation, post creation, scheduling, publishing, and run orchestration.
Use this skill when the user asks to:
AUTOBLOGWRITER_API_KEY (preferred), or saved key via autoblogwriter set-keyAUTOBLOGWRITER_API_URL (defaults to https://api.autoblogwriter.app)--json-file or --inline payloads for deterministic command execution.error and exit code.autoblogwriter statusautoblogwriter statusautoblogwriter login --workspace <workspaceSlug>autoblogwriter set-key --key <value>autoblogwriter logoutautoblogwriter workspaces:listautoblogwriter workspaces:get <workspace>autoblogwriter integrations:list --workspace <workspace>autoblogwriter integrations:status --workspace <workspace>autoblogwriter ideas:generate --workspace <workspace> --json-file payload.jsonautoblogwriter ideas:list --workspace <workspace>autoblogwriter ideas:use-bulk --workspace <workspace> --idea-ids id1,id2autoblogwriter posts:list --workspace <workspace>autoblogwriter posts:create --workspace <workspace> --inline '{"keywords":["topic"]}'autoblogwriter posts:schedule-bulk --workspace <workspace> --json-file payload.jsonautoblogwriter posts:publish-bulk --workspace <workspace> --post-ids id1,id2autoblogwriter runs:validate -f workflow.jsonautoblogwriter runs:validate --inline '{"version":"1",...}'autoblogwriter runs:start -f workflow.jsonautoblogwriter runs:start --inline '{"version":"1",...}'autoblogwriter runs:status <runId>autoblogwriter runs:logs <runId>autoblogwriter runs:list{
"ok": true,
"command": "ideas:generate",
"data": {},
"meta": {
"workspace": "workspace-slug",
"requestId": "optional"
},
"error": null
}
0: success2: partial success10: auth/config error11: validation/spec error12: API/network failure13: rate/plan limit error10 auth/config error:
Re-check AUTOBLOGWRITER_API_KEY or run autoblogwriter set-key --key <value>.11 validation/spec error:
Run autoblogwriter runs:validate and fix payload/schema issues before retrying.12 API/network failure:
Retry with same inputs, then verify AUTOBLOGWRITER_API_URL and network connectivity.13 rate/plan limit error:
Reduce batch size, retry later, or switch to an eligible workspace/plan.--json-file or --inline payloads?tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.