Skills and context files give the agent deeper understanding of your project. They are configured per workspace in Settings → Agent → Skills & Context files.Documentation Index
Fetch the complete documentation index at: https://docs.stagewise.io/llms.txt
Use this file to discover all available pages before exploring further.
Context files
WORKSPACE.md
When you connect a workspace, stagewise can auto-generate aWORKSPACE.md file in the .stagewise/ directory. This file contains:
- Project type, languages, and runtime
- Package structure and dependency graph
- Build scripts and CI configuration
- Key files and their purposes
- Architecture overview
- Open Settings → Agent → Skills & Context files
- Select the workspace
- Click Generate (or Regenerate if one exists)
.stagewise/WORKSPACE.md in your project. You can commit it to source control or add it to .gitignore.
AGENTS.md
An optionalAGENTS.md file in your project root provides custom instructions to the agent. Use this for:
- Coding conventions and style rules
- Preferred libraries and patterns
- Project-specific terminology
- Build/test commands
AGENTS.md when it’s present, but it’s opt-in — you enable it per workspace in the Skills & Context settings.
Skills
Skills are structured instruction sets that extend the agent’s capabilities for specific tasks. A skill is a folder with aSKILL.md file and optional supporting files.
Skill locations
Skills are loaded from two places (in priority order):.stagewise/skills/— stagewise-exclusive skills (highest priority).agents/skills/— Skills shared across multiple AI tools
Skill structure
Creating a skill
ASKILL.md file needs a name and description in its frontmatter. Skills follow the Agent Skills Standard:
description field tells the agent when to activate the skill. Be specific — e.g. “Use when creating or reviewing React components that use Zustand stores.”