Claude-skill-registry agentuity-cli-profile-create
Create a new configuration profile
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/agentuity-cli-profile-create" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-profile-create && rm -rf "$T"
manifest:
skills/data/agentuity-cli-profile-create/SKILL.mdsource content
Profile Create
Create a new configuration profile
Usage
agentuity profile create <name> [options]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| boolean | Yes | - | switch to this profile (if more than one) |
Examples
Create new item:
bunx @agentuity/cli profile create production
Use switch option:
bunx @agentuity/cli profile create staging --switch
Create new item:
bunx @agentuity/cli profile create development
Output
Returns JSON object:
{ "success": "boolean", "name": "string", "path": "string" }
| Field | Type | Description |
|---|---|---|
| boolean | Whether creation succeeded |
| string | Profile name |
| string | Profile file path |