KosmoKrator

data

Akismet CLI for AI Agents

Use the Akismet CLI from KosmoKrator to call Akismet tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Akismet CLI Setup

Akismet can be configured headlessly with `kosmokrator integrations:configure akismet`.

Install, configure, and verify
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure akismet --set api_key="$AKISMET_API_KEY" --set blog="$AKISMET_BLOG" --enable --read allow --write ask --json
kosmokrator integrations:doctor akismet --json
kosmokrator integrations:status --json

Credentials

Authentication type: API key api_key. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

KeyEnv varTypeRequiredLabel
api_key AKISMET_API_KEY Secret secret yes API Key
blog AKISMET_BLOG URL url yes Blog URL

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call akismet.akismet_verify_key '{}' --json
Provider shortcut
kosmo integrations:akismet akismet_verify_key '{}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs akismet --json
kosmo integrations:docs akismet.akismet_verify_key --json
kosmo integrations:schema akismet.akismet_verify_key --json
kosmo integrations:search "Akismet" --json
kosmo integrations:list --json

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

akismet.akismet_verify_key

Verify the Akismet API key and blog URL.

Read read
Parameters
none
Generic call
kosmo integrations:call akismet.akismet_verify_key '{}' --json
Shortcut
kosmo integrations:akismet akismet_verify_key '{}' --json

akismet.akismet_comment_check

Check submitted content for spam.

Read read
Parameters
none
Generic call
kosmo integrations:call akismet.akismet_comment_check '{}' --json
Shortcut
kosmo integrations:akismet akismet_comment_check '{}' --json

akismet.akismet_submit_spam

Submit missed spam feedback to Akismet.

Write write
Parameters
none
Generic call
kosmo integrations:call akismet.akismet_submit_spam '{}' --json
Shortcut
kosmo integrations:akismet akismet_submit_spam '{}' --json

akismet.akismet_submit_ham

Submit false-positive ham feedback to Akismet.

Write write
Parameters
none
Generic call
kosmo integrations:call akismet.akismet_submit_ham '{}' --json
Shortcut
kosmo integrations:akismet akismet_submit_ham '{}' --json

akismet.akismet_key_sites

Retrieve site activity for the API key.

Read read
Parameters
none
Generic call
kosmo integrations:call akismet.akismet_key_sites '{}' --json
Shortcut
kosmo integrations:akismet akismet_key_sites '{}' --json

akismet.akismet_usage_limit

Retrieve current monthly API usage and throttling status.

Read read
Parameters
none
Generic call
kosmo integrations:call akismet.akismet_usage_limit '{}' --json
Shortcut
kosmo integrations:akismet akismet_usage_limit '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

akismet.akismet_verify_key 0 parameters
Schema command
kosmo integrations:schema akismet.akismet_verify_key --json
ParameterTypeRequiredDescription
No parameters.
akismet.akismet_comment_check 0 parameters
Schema command
kosmo integrations:schema akismet.akismet_comment_check --json
ParameterTypeRequiredDescription
No parameters.
akismet.akismet_submit_spam 0 parameters
Schema command
kosmo integrations:schema akismet.akismet_submit_spam --json
ParameterTypeRequiredDescription
No parameters.
akismet.akismet_submit_ham 0 parameters
Schema command
kosmo integrations:schema akismet.akismet_submit_ham --json
ParameterTypeRequiredDescription
No parameters.
akismet.akismet_key_sites 0 parameters
Schema command
kosmo integrations:schema akismet.akismet_key_sites --json
ParameterTypeRequiredDescription
No parameters.
akismet.akismet_usage_limit 0 parameters
Schema command
kosmo integrations:schema akismet.akismet_usage_limit --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.