Add article
documentedAdd an article (alternate path example).
GET /articles/{id}/addArticlesno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
# Note: The public Stack Exchange API does not expose /articles/{id}/add. This command uses the supported /questions/add endpoint instead. See: https://api.stackexchange.com/docs/create-question
npx -y keychains@latest curl "https://api.stackexchange.com/2.3/questions/add" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"title": "{{$title}}", "body": "{{$body}}", "tags": "{{$tags}}", "site": "{{$site}}", "access_token": "{{OAUTH2_ACCESS_TOKEN}}", "key": "{{STACKEXCHANGE_API_KEY}}"}'