Generate and manage system prompts for AI agents. Compose base prompts, inject context, or produce clean prompts without runtime context.
scorpiox-systemprompt is a core utility that constructs the system prompt used by AI agents in scorpiox-code sessions.
It assembles a base template with role instructions, tool descriptions, and behavioral rules, then optionally layers
runtime context such as the current working directory, project files, environment variables, and CLAUDE.md configuration.
The three output modes (--base, --no-context, --context) let you inspect each
layer independently โ useful for debugging agent behavior, auditing prompt content, or building custom prompt pipelines.
| Flag | Short | Description | Takes Value |
|---|---|---|---|
--base |
-b |
Output the base system prompt template without any context injected | No |
--no-context |
-n |
Generate the system prompt without runtime context (environment, files, etc.) | No |
--context |
-c |
Generate the full system prompt with all available runtime context included | No |
--help |
-h |
Display help information and usage | No |