station-config

station-config is a skill for Claude Code, Codex from cloudshipai/station. It costs 37 tokens per session (1,280 once invoked), scanned A, original, Apache-2.0.

A configuration tool for Station that provides both a browser-based editor and command-line commands. It manages settings such as the AI provider, coding backend, and CloudShip connection.

In plain words
What is it for?
Use it to edit settings in a browser, view or update individual values from the terminal, inspect the configuration schema, and find the configuration file.
Why use it?
It makes Station settings easier to view, validate, and change while hiding stored secrets when displaying configuration.

Skill for Claude CodeCodex

Part of the claude-code-plugin plugin — 2 skills, 1 command shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/cloudshipai/station/station-config
Any agent
npx skills add cloudshipai/station --skill station-config
Clone the repo
git clone --depth 1 https://github.com/cloudshipai/station

Made for: Claude Code, Codex.

Or install claude-code-plugin, the plugin that ships this one along with the rest of its 2 skills, 1 command.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for station-config

README.md
[![agentmods](https://agentmods.dev/badge/skills/cloudshipai/station/station-config.svg)](https://agentmods.dev/skills/cloudshipai/station/station-config)
Your own site
<a href="https://agentmods.dev/skills/cloudshipai/station/station-config"><img src="https://agentmods.dev/badge/skills/cloudshipai/station/station-config.svg" alt="Measured on agentmods" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,280 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00037 $0.01280
Opus 5 $0.00018 $0.00640
Sonnet 5 $0.00007 $0.00256
Haiku 4.5 $0.00004 $0.00128

Measured 5d ago against content hash bf49bd8a5118, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

station-config scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

claude-code-plugin/skills/station-config/SKILL.md · 183 lines

How it starts

The opening of the file, as written. The whole thing — 183 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Station Configuration

Configure Station settings including AI provider, coding backend, CloudShip integration, and more.

The easiest way to configure Station is via the browser UI:

# Opens browser-based config editor
# Automatically starts server if not running
stn config --browser

This opens a visual editor with:

  • All configuration sections organized
  • Conditional fields (e.g., backend-specific settings only show for selected backend)
  • Secret fields with show/hide toggle
  • Validation and defaults

CLI Configuration Commands

View Configuration

# Show all config (secrets redacted)
stn config show

# Show specific section
stn config show ai
stn config show coding
stn config show cloudship

# Show config file path
stn config path

# Show all available config keys
stn config schema

Set Configuration Values

# Set a value
stn config set <key> <value>

# Examples
stn config set ai_provider anthropic
stn config set ai_model claude-sonnet-4-20250514
stn config set coding.backend opencode
stn config set cloudship.enabled true

# Set nested values
stn config set coding.nats.url nats://localhost:4222
stn config set cloudship.api_key cst_xxx

# Reset to default
stn config reset <key>

Edit Config File Directly

# Open in $EDITOR
stn config edit

Configuration Sections

AI Provider (ai_*)

Key Description Default
ai_provider Provider: openai, anthropic, ollama, gemini openai
ai_model Model name gpt-4o
ai_api_key API key (secret) -
ai_base_url Custom base URL for OpenAI-compatible -

Coding Backend (coding.*)

Key Description Default
coding.backend Backend: opencode, opencode-nats, opencode-cli, claudecode opencode-cli
coding.workspace_base_path Base path for workspaces /tmp/station-coding
coding.max_attempts Max retry attempts 3
coding.task_timeout_min Task timeout in minutes 30

Read the full file on GitHub · 183 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 183 lines · 37 tokens per session scan A bf49bd8a5118

Subscribe to this mod's changes

station-config is a skill published in the GitHub repository cloudshipai/station (429 stars, last pushed 7mo ago), licensed Apache-2.0. It adds 37 tokens to every session and 1,280 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

symbolpeek

Token-efficient code, JSON, and Markdown navigation; use before whole-file reads.

pioner92/symbolpeek-mcp · 19 tokens

implementation-final-review

Perform the repository's risk-tiered independent final review before implementation completion. Use only when explicitly invoked or when repository instructions require it after behavior-impacting implementation work; audit the complete task diff, supported contracts, lifecycle and security boundaries, complexity, and…

openai/openai-agents-python · 58 tokens

deploy-docker-compose

Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…

omnigent-ai/omnigent · 84 tokens

api-docs

Document a module or public API surface (functions, classes, CLI commands, endpoints) from the code itself. Use when the user asks for API reference, to document a module, or to write usage docs for a public interface.

omnigent-ai/omnigent · 50 tokens

benchmark-tune

Use this skill when running, debugging, interpreting, or documenting mesh-llm benchmark tune model-serving throughput trials, including choosing ctx/batch/ubatch/mmap/mlock/speculative-decoding sweeps, running benchmark tune on local or SSH hosts, collecting JSON evidence, and applying tolerance-aware recommendations.…

Mesh-LLM/mesh-llm · 106 tokens

deploy-windows

Use this skill when installing, deploying, launching, serving, or troubleshooting mesh-llm on a Windows machine — PowerShell install via install.ps1, flavor selection (CUDA/ROCm/Vulkan/CPU), source builds, the contrib helper scripts, and verifying it serves.

Mesh-LLM/mesh-llm · 60 tokens