Skip to content

Commit 2c330ad

Browse files
authored
fix(codex): expand plain-language starter prompts (#995)
1 parent fadeea9 commit 2c330ad

2 files changed

Lines changed: 17 additions & 7 deletions

File tree

.codex-plugin/plugin.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
"privacyPolicyURL": "https://every.to/legal",
3434
"termsOfServiceURL": "https://every.to/legal",
3535
"defaultPrompt": [
36-
"/ce-brainstorm a new feature",
37-
"/ce-plan the implementation",
38-
"/ce-code-review my changes"
36+
"Brainstorm a new feature with me",
37+
"Ideate and surprise me!",
38+
"Simplify the code in my most-churned file"
3939
],
4040
"brandColor": "#C9EFFA",
4141
"composerIcon": "./assets/icon.svg",

README.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ For the full catalog and how each skill chains together, see [docs/skills](docs/
5757
**Finding a direction** -- when you don't have a specific idea yet, ideate first, then carry the strongest survivor into the loop:
5858

5959
```text
60-
/ce-ideate "new drawing tools"
60+
/ce-ideate new drawing tools
61+
/ce-ideate surprise me
6162
/ce-ideate github issues # ground ideas in your open issues instead of a prompt
6263
```
6364

@@ -66,26 +67,35 @@ For the full catalog and how each skill chains together, see [docs/skills](docs/
6667
**Standard feature loop** -- turn a rough idea into shipped, reviewed code:
6768

6869
```text
69-
/ce-brainstorm "make background job retries safer"
70+
/ce-brainstorm make background job retries safer
7071
/ce-plan
7172
/ce-work
7273
/ce-simplify-code
7374
/ce-code-review
7475
/ce-compound
7576
```
7677

78+
**Simplifying code** -- use it after fresh implementation work, or point it at code that keeps slowing changes down:
79+
80+
```text
81+
/ce-simplify-code
82+
/ce-simplify-code simplify the code in my most-churned file
83+
```
84+
85+
The first pass tightens recent branch changes before review. The targeted pass is useful when one file keeps absorbing unrelated fixes, follow-ups, or merge conflicts.
86+
7787
**Debugging a bug** -- when you start from broken behavior instead of a feature:
7888

7989
```text
80-
/ce-debug "the checkout webhook sometimes creates duplicate invoices"
90+
/ce-debug the checkout webhook sometimes creates duplicate invoices
8191
/ce-code-review
8292
/ce-compound
8393
```
8494

8595
**Autonomous** -- hand off a feature and let the agent run the whole pipeline:
8696

8797
```text
88-
/ce-brainstorm "describe the feature"
98+
/ce-brainstorm describe the feature
8999
/lfg
90100
```
91101

0 commit comments

Comments
 (0)