Skip to content

Install the agent skill

Once the CLI is installed, you can point any AI agent at it to give that agent every StratoNext capability: managing projects, tasks, environments, dossiers, and approvals directly from your editor or terminal.

Tasks dispatched to background agents are not interactive. A local agent with the skill gives you a conversation across multiple turns while retaining the full power of StratoNext, and it is the best way to populate the platform with your existing data.

Paste this prompt into your agent (Claude Code, Codex, or any coding agent that can fetch URLs):

Fetch https://app.stratonext.com/prompt.md and follow it to install and configure the StratoNext skill in this project.

The agent walks you through the full setup:

  1. Installs the CLI (uv tool install stratonext) if it is not present.
  2. Runs stratonext login for a browser-based OAuth2 login and verifies it with stratonext whoami.
  3. Downloads the skill definition into your project.
  4. Confirms everything works and is ready for your first request.

In Claude Code, run /stratonext to access the skill’s capabilities.

Download the skill definition into your project. For Claude Code:

Terminal window
mkdir -p .claude/skills/stratonext
curl -fsSL https://app.stratonext.com/skill.md -o .claude/skills/stratonext/SKILL.md

The skill document at app.stratonext.com/skill.md describes every CLI command and the task-based workflow agents must follow. It works with any agent framework that supports markdown skills or system prompts.

To populate StratoNext with your existing data, use a coding agent that has access to your documentation and source code, then simply ask it to set up a new project in StratoNext and link your existing resources. The agent creates the project, uploads relevant documents, and registers links on your behalf.

With the skill installed and an AWS environment connected, try asking your agent:

  • “Create a report of all errors in my API Gateway.”
  • “Investigate the latest Lambda errors in the last 24 hours.”
  • “Ensure the database is not exposed to the public, assess the network security, and create a dossier.”