You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I try to use ~/agent-os/scripts/project-install.sh --profile <myprofile> for getting different configurations.
my config.yml
version: 2.1.1
base_install: true
# CONFIGURATION
# Configure defaults for the tools you use and how Agent OS should compile commands for your projects.
# ================================================
# PROFILE
#
# Use this profile by default.
#
# Override this default when running project-install.sh by using the flag --profile [profile-name]
# ================================================
defaults:
profile: nonclaude
# ================================================
# DEFAULT PROFILE - Claude Code with Skills
# Recommended configuration for Claude Code users
# ================================================
default:
# Set to true to install commands in your project's .claude/commands/agent-os/ folder
claude_code_commands: true
# Set to true to install agents in .claude/agents/agent-os/ and have commands delegate to them
use_claude_code_subagents: true
# Set to false - not needed when using Claude Code
agent_os_commands: false
# Set to true to use Claude Code's Skills feature for reading standards (recommended)
standards_as_claude_code_skills: true
# ================================================
# NONCLAUDE PROFILE - For other AI coding tools
# Configuration for Cursor, Windsurf, Warp, etc.
# ================================================
nonclaude:
# Set to false - not using Claude Code
claude_code_commands: false
# Set to false - subagents only work with Claude Code
use_claude_code_subagents: false
# Set to true to install commands in your project's agent-os/commands/ folder
agent_os_commands: true
# Note: standards_as_claude_code_skills is ignored when claude_code_commands is false
standards_as_claude_code_skills: false
But when installing the nonclaude profile the default config is used.
~/agent-os/scripts/project-install.sh --profile nonclaude
=== Agent OS Project Installation ===
Configuration:
Profile: nonclaude
Claude Code commands: true
Use Claude Code subagents: true
Standards as Claude Code Skills: true
Agent OS commands: false
Same when using this profile-config.yml
# Set to false - not using Claude Code
claude_code_commands: false
# Set to false - subagents only work with Claude Code
use_claude_code_subagents: false
# Set to true to install commands in your project's agent-os/commands/ folder
agent_os_commands: true
# Note: standards_as_claude_code_skills is ignored when claude_code_commands is false
standards_as_claude_code_skills: false
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I try to use
~/agent-os/scripts/project-install.sh --profile <myprofile>for getting different configurations.my
config.ymlBut when installing the nonclaude profile the
defaultconfig is used.Same when using this profile-config.yml
Beta Was this translation helpful? Give feedback.
All reactions