Skip to content

Commit e8677a3

Browse files
Fix Prettier formatting in docs from #41 (#42)
Whitespace-only changes to satisfy format:check in CI. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent d178229 commit e8677a3

5 files changed

Lines changed: 37 additions & 37 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -170,12 +170,12 @@ caretforge run "List all TODO comments" --json
170170

171171
CaretForge supports multiple providers through a pluggable interface:
172172

173-
| Provider | Models | Status |
174-
| ------------------ | ---------------------------- | --------- |
175-
| `azure-anthropic` | Claude Opus, Sonnet, etc. | **Ready** |
176-
| `azure-foundry` | GPT-4o, GPT-4.1, Kimi K2.5 | **Ready** |
177-
| `azure-responses` | gpt-5.2-codex, codex-mini | **Ready** |
178-
| `azure-agents` | Azure AI Agent Service | Preview |
173+
| Provider | Models | Status |
174+
| ----------------- | -------------------------- | --------- |
175+
| `azure-anthropic` | Claude Opus, Sonnet, etc. | **Ready** |
176+
| `azure-foundry` | GPT-4o, GPT-4.1, Kimi K2.5 | **Ready** |
177+
| `azure-responses` | gpt-5.2-codex, codex-mini | **Ready** |
178+
| `azure-agents` | Azure AI Agent Service | Preview |
179179

180180
### Adding a New Provider
181181

docs/guide/tools.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ CaretForge uses an interactive permission model inspired by [Claude Code](https:
7373

7474
Before any shell command is executed (even with `--allow-shell`), CaretForge classifies it into a risk tier:
7575

76-
| Risk Level | Behavior | Examples |
77-
| -------------- | ---------------------------------------------------------- | ----------------------------------------------- |
78-
| **Safe** | Auto-approved with `--allow-shell`; normal prompt otherwise | `ls`, `cat`, `grep`, `git status`, `node -v` |
79-
| **Mutating** | Normal permission prompt | `npm install`, `git commit`, `mkdir` |
80-
| **Destructive** | Always prompts (even with `--allow-shell`), shown in red | `rm`, `sudo`, `chmod -R`, `kill -9`, `shutdown` |
81-
| **Blocked** | Denied outright — never executed | `rm -rf /`, fork bombs, `curl ... \| bash` |
76+
| Risk Level | Behavior | Examples |
77+
| --------------- | ----------------------------------------------------------- | ----------------------------------------------- |
78+
| **Safe** | Auto-approved with `--allow-shell`; normal prompt otherwise | `ls`, `cat`, `grep`, `git status`, `node -v` |
79+
| **Mutating** | Normal permission prompt | `npm install`, `git commit`, `mkdir` |
80+
| **Destructive** | Always prompts (even with `--allow-shell`), shown in red | `rm`, `sudo`, `chmod -R`, `kill -9`, `shutdown` |
81+
| **Blocked** | Denied outright — never executed | `rm -rf /`, fork bombs, `curl ... \| bash` |
8282

8383
Piped and chained commands (using `|`, `&&`, or `;`) are analyzed segment by segment. If any segment is destructive or blocked, the entire command inherits that classification.
8484

docs/reference/cli.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ caretforge --provider azure-foundry --allow-write
6060

6161
**Slash commands** available inside the REPL:
6262

63-
| Command | Description |
64-
| ------------- | ----------------------------------------------- |
65-
| `/help` | Show available commands |
66-
| `/model` | List models from all configured providers |
67-
| `/model <id>` | Switch model mid-conversation |
68-
| `/clear` | Clear conversation history |
69-
| `/compact` | Trim older messages from history |
70-
| `/exit` | Exit CaretForge |
71-
| `/quit` | Exit CaretForge (alias) |
63+
| Command | Description |
64+
| ------------- | ----------------------------------------- |
65+
| `/help` | Show available commands |
66+
| `/model` | List models from all configured providers |
67+
| `/model <id>` | Switch model mid-conversation |
68+
| `/clear` | Clear conversation history |
69+
| `/compact` | Trim older messages from history |
70+
| `/exit` | Exit CaretForge |
71+
| `/quit` | Exit CaretForge (alias) |
7272

7373
You can also type `exit`, `quit`, or `q` without the slash to leave the REPL.
7474

docs/reference/configuration.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,11 @@ Path: `providers.azureResponses`
115115

116116
For models that use the OpenAI Responses API instead of Chat Completions (e.g. `gpt-5.2-codex`, `codex-mini`).
117117

118-
| Field | Type | Required | Default | Description |
119-
| ---------- | -------------- | -------- | ------- | --------------------------------------------- |
120-
| `endpoint` | `string (URL)` | Yes || `https://RESOURCE.openai.azure.com` |
121-
| `apiKey` | `string` | Yes || Azure API key |
122-
| `models` | `array` | No | `[]` | Available models |
118+
| Field | Type | Required | Default | Description |
119+
| ---------- | -------------- | -------- | ------- | ----------------------------------- |
120+
| `endpoint` | `string (URL)` | Yes || `https://RESOURCE.openai.azure.com` |
121+
| `apiKey` | `string` | Yes || Azure API key |
122+
| `models` | `array` | No | `[]` | Available models |
123123

124124
### URL Construction
125125

docs/reference/security.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ Without any flags, the agent can only **read files**. It cannot:
7676

7777
Before any shell command or file write is executed, CaretForge classifies it into a risk tier:
7878

79-
| Risk Level | Behavior |
80-
| --------------- | ------------------------------------------------------------ |
81-
| **Safe** | Auto-approved with `--allow-shell`; normal prompt otherwise |
82-
| **Mutating** | Normal permission prompt |
79+
| Risk Level | Behavior |
80+
| --------------- | ----------------------------------------------------------------- |
81+
| **Safe** | Auto-approved with `--allow-shell`; normal prompt otherwise |
82+
| **Mutating** | Normal permission prompt |
8383
| **Destructive** | Always prompts, even with `--allow-shell`, shown with red warning |
84-
| **Blocked** | Denied outright — never executed |
84+
| **Blocked** | Denied outright — never executed |
8585

8686
#### Safe Commands
8787

@@ -198,12 +198,12 @@ On startup, indexing statistics are shown:
198198

199199
### Indexing Limits
200200

201-
| Limit | Value |
202-
| ------------- | ------ |
203-
| Max files | 5,000 |
204-
| Max depth | 4 |
205-
| Max file size | 1 MB |
206-
| Timeout | 10 s |
201+
| Limit | Value |
202+
| ------------- | ----- |
203+
| Max files | 5,000 |
204+
| Max depth | 4 |
205+
| Max file size | 1 MB |
206+
| Timeout | 10 s |
207207

208208
## Agent Loop Limits
209209

0 commit comments

Comments
 (0)