Skip to content

Commit 4c0a224

Browse files
authored
docs: fix incorrect CLI command syntax (#8)
- Change 'capiscio version' to 'capiscio --version' (version is a flag, not command) - Fix 'key gen --output' to 'key gen --out-priv/--out-pub' (correct flag names) - Remove '(includes scores)' from JSON output description (clarification)
1 parent 4c905c6 commit 4c0a224

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ Once installed, the `capiscio` command is available in your terminal. It passes
2727
# Validate an agent
2828
capiscio validate https://my-agent.example.com
2929

30-
# Validate with JSON output (includes scores)
30+
# Validate with JSON output
3131
capiscio validate https://my-agent.example.com --json
3232

3333
# Check version
34-
capiscio version
34+
capiscio --version
3535
```
3636

3737
### Wrapper Utilities

docs/getting-started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Once installed, the `capiscio` command is available in your terminal. It passes
1919
capiscio validate ./agent-card.json
2020

2121
# Check version
22-
capiscio version
22+
capiscio --version
2323
```
2424

2525
For full command reference, see the [CapiscIO Core Documentation](../../capiscio-core/index.md).

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ pip install capiscio
3939
# Validate an agent card
4040
capiscio validate ./agent-card.json
4141

42-
# Validate with JSON output (includes scores)
42+
# Validate with JSON output
4343
capiscio validate ./agent-card.json --json
4444

4545
# Check core binary version
46-
capiscio version
46+
capiscio --version
4747
```
4848

4949
## What This Package Does

docs/reference/commands.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ capiscio validate ./agent-card.json --json
3939
capiscio validate https://agent.example.com --test-live
4040

4141
# Check version of the core binary
42-
capiscio version
42+
capiscio --version
4343

44-
# Generate a signing key
45-
capiscio key gen --output ./my-key.jwk
44+
# Generate a signing key pair
45+
capiscio key gen --out-priv ./private.jwk --out-pub ./public.jwk
4646
```

0 commit comments

Comments
 (0)