Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b6bdc8e

Browse files
add: support Warp agentic terminal environment (#353)
* add: support Warp agentic terminal environment * add: changeset for warp support
1 parent b7451ee commit b6bdc8e

8 files changed

Lines changed: 43 additions & 1 deletion

File tree

.changeset/thick-bears-grow.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"ultracite": minor
3+
---
4+
5+
Introduce Warp agentic terminal support

apps/docs/app/(docs)/[[...slug]]/(home)/components/agents/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import roo from "./logos/roo-code.svg";
2222
import vscode from "./logos/vscode.svg";
2323
import windsurf from "./logos/windsurf.svg";
2424
import zed from "./logos/zed.svg";
25+
import warp from "./logos/warp.svg";
2526

2627
const logos = [
2728
{
@@ -96,6 +97,10 @@ const logos = [
9697
name: "Roo Code",
9798
src: roo,
9899
},
100+
{
101+
name: "Warp",
102+
src: warp,
103+
},
99104
];
100105

101106
const HALF = Math.ceil(logos.length / 2);
Lines changed: 25 additions & 0 deletions
Loading

apps/docs/content/(docs)/rules.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Then, copy and paste [this content](https://github.com/haydenbleasel/ultracite/t
5353
| Kilo Code | `.kilocode/rules/ultracite.md` |
5454
| Codename Goose | `.goosehints` |
5555
| Roo Code | `.roo/rules/ultracite.md` |
56+
| Warp | `WARP.md` |
5657

5758
## Benefits
5859

apps/docs/content/(docs)/setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You can optionally pass the following flags to the `init` command:
2424
| `--pm` | The package manager to use. | `pnpm`, `bun`, `yarn`, `npm` |
2525
| `--frameworks` | The frameworks to configure. | Comma-separated: `react`, `next`, `solid`, `vue`, `qwik`, `angular`, `remix`, `svelte` |
2626
| `--editors` | The editors to configure. | Comma-separated: `vscode`, `zed` |
27-
| `--agents` | The AI agents to configure. | Comma-separated: `vscode-copilot`, `cursor`, `windsurf`, `zed`, `claude`, `codex`, `kiro`, `cline`, `amp`, `aider`, `firebase-studio`, `open-hands`, `gemini-cli`, `junie`, `augmentcode`, `kilo-code`, `goose`, `roo-code` |
27+
| `--agents` | The AI agents to configure. | Comma-separated: `vscode-copilot`, `cursor`, `windsurf`, `zed`, `claude`, `codex`, `kiro`, `cline`, `amp`, `aider`, `firebase-studio`, `open-hands`, `gemini-cli`, `junie`, `augmentcode`, `kilo-code`, `goose`, `roo-code`, `warp` |
2828
| `--integrations` | Additional integrations to setup. | Comma-separated: `husky`, `lefthook`, `lint-staged` |
2929
| `--migrate` | Migration tools to remove. | Comma-separated: `eslint`, `prettier` (removes dependencies, config files, and editor settings) |
3030
| `--skip-install` | Skip installing dependencies. | (no value needed) |

packages/cli/src/consts/options.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export const options = {
2222
"kilo-code",
2323
"goose",
2424
"roo-code",
25+
"warp",
2526
] as const,
2627
integrations: ["husky", "lefthook", "lint-staged"] as const,
2728
frameworks: [

packages/cli/src/consts/rules.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,8 @@ alwaysApply: false
8282
path: "./.roo/rules/ultracite.md",
8383
appendMode: true,
8484
},
85+
warp: {
86+
path: "./WARP.md",
87+
appendMode: true,
88+
},
8589
} as const;

packages/cli/src/initialize.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,7 @@ export const initialize = async (flags?: InitializeFlags) => {
464464
"kilo-code": "Kilo Code",
465465
goose: "Codename Goose",
466466
"roo-code": "Roo Code",
467+
warp: "Warp",
467468
} as const;
468469

469470
if (!agents) {

0 commit comments

Comments
 (0)