Claude-skill-registry agentuity-cli-project-show
Show project detail. Requires authentication. Use for project management operations
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-project-show" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-project-show && rm -rf "$T"
manifest:
skills/data/agentuity-cli-project-show/SKILL.mdsource content
Project Show
Show project detail
Prerequisites
- Authenticated with
agentuity auth login
Usage
agentuity project show <id>
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Examples
Show details:
bunx @agentuity/cli project show proj_abc123def456
Show output in JSON format:
bunx @agentuity/cli --json project show proj_abc123def456
Get item details:
bunx @agentuity/cli project get proj_abc123def456
Output
Returns JSON object:
{ "id": "string", "name": "string", "description": "unknown", "tags": "unknown", "orgId": "string", "secrets": "object", "env": "object" }
| Field | Type | Description |
|---|---|---|
| string | Project ID |
| string | Project name |
| unknown | Project description |
| unknown | Project tags |
| string | Organization ID |
| object | Project secrets (masked) |
| object | Environment variables |