letmecook 0.0.6 → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +15 -1
  2. package/index.ts +17 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,20 @@
1
1
  # letmecook
2
2
 
3
- Multi-repo workspace manager for AI coding sessions. Clone multiple GitHub repos into a persistent session and launch opencode with an interactive TUI.
3
+ Ephemeral workspaces for AI coding sessions.
4
+
5
+ ## Why
6
+
7
+ There's a common practice where developers point their AI coding agent at their development folder. This seems convenient, but that folder is often full of traps: outdated code, abandoned experiments, multiple versions of similar projects, and naming collisions that send agents down rabbit holes until they hit context limits.
8
+
9
+ You have to know every file you have, which ones matter, and which ones to avoid. It's too much overhead, and your agent pays the price.
10
+
11
+ **letmecook takes a different approach.** Instead of trying to control your agent with elaborate rules and constraints, give it clean context and get out of its way. Clone the repos you need, add your skills, do the work, and nuke the session when you're done.
12
+
13
+ This tool is intentionally simple. It sets up repositories, skills, and soon MCP servers - then hands off to your preferred coding agent. That's it. The philosophy is that agents are good at problem-solving when you give them what they need and let them cook.
14
+
15
+ **Works with any tool that can open a folder.** If your editor or agent supports `<cmd> <folder>`, it works with letmecook. opencode, Cursor, Claude Code, Codex, Gemini, VS Code, vim - whatever you prefer.
16
+
17
+ [Read more about the philosophy behind letmecook](/docs/docs/concepts/philosophy.md)
4
18
 
5
19
  ## Features
6
20
 
package/index.ts CHANGED
@@ -21,6 +21,7 @@ Usage:
21
21
  letmecook --resume <session-name> Resume a session
22
22
  letmecook --nuke <session-name> Delete a session
23
23
  letmecook --nuke-all Delete all sessions
24
+ letmecook --why Show why this tool exists
24
25
  letmecook --help Show this help
25
26
  letmecook --version Show version
26
27
 
@@ -35,6 +36,17 @@ Examples:
35
36
  `);
36
37
  }
37
38
 
39
+ function printWhy(): void {
40
+ console.log(`
41
+ Your dev folder is full of traps: outdated code, abandoned experiments, naming
42
+ collisions that send agents down rabbit holes until they hit context limits.
43
+
44
+ letmecook gives your agent clean context. Clone what you need, cook, nuke when done.
45
+
46
+ Agents are good at problem-solving when you give them what they need and let them cook.
47
+ `);
48
+ }
49
+
38
50
  async function handleNewSessionCLI(repos: RepoSpec[]): Promise<void> {
39
51
  const renderer = await createRenderer();
40
52
 
@@ -227,6 +239,11 @@ if (firstArg === "--version" || firstArg === "-v") {
227
239
  process.exit(0);
228
240
  }
229
241
 
242
+ if (firstArg === "--why") {
243
+ printWhy();
244
+ process.exit(0);
245
+ }
246
+
230
247
  if (args.length === 0 || firstArg === "--help" || firstArg === "-h") {
231
248
  printUsage();
232
249
  process.exit(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "letmecook",
3
- "version": "0.0.6",
3
+ "version": "0.0.12",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/rustydotwtf/letmecook.git"