letmecook 0.0.5 → 0.0.7

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 +7 -0
  3. package/package.json +2 -2
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
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env bun
2
2
 
3
+ import pkg from "./package.json";
3
4
  import { parseRepoSpec, type RepoSpec } from "./src/types";
4
5
  import { listSessions, getSession, updateLastAccessed, deleteAllSessions } from "./src/sessions";
5
6
  import { createRenderer, destroyRenderer } from "./src/ui/renderer";
@@ -21,6 +22,7 @@ Usage:
21
22
  letmecook --nuke <session-name> Delete a session
22
23
  letmecook --nuke-all Delete all sessions
23
24
  letmecook --help Show this help
25
+ letmecook --version Show version
24
26
 
25
27
  Examples:
26
28
  # Interactive mode (new - recommended)
@@ -220,6 +222,11 @@ console.clear();
220
222
  const args = process.argv.slice(2);
221
223
  const firstArg = args[0];
222
224
 
225
+ if (firstArg === "--version" || firstArg === "-v") {
226
+ console.log(`letmecook v${pkg.version}`);
227
+ process.exit(0);
228
+ }
229
+
223
230
  if (args.length === 0 || firstArg === "--help" || firstArg === "-h") {
224
231
  printUsage();
225
232
  process.exit(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "letmecook",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/rustydotwtf/letmecook.git"
@@ -22,7 +22,7 @@
22
22
  "prepare": "husky",
23
23
  "lint": "oxlint",
24
24
  "lint:fix": "oxlint --fix",
25
- "lint:ci": "oxlint --type-aware --deny-warnings --tsconfig ./tsconfig.json",
25
+ "lint:ci": "oxlint --deny-warnings",
26
26
  "format": "oxfmt --write .",
27
27
  "format:check": "oxfmt --check .",
28
28
  "check": "bun run lint && bun run format:check",