| description |
|---|
Initialize the Feature Design (FD) tracking system in any project |
Set up a lightweight feature tracking system in the current project. Creates directory structure, index, templates, slash commands, and CLAUDE.md conventions.
| function bluetooth(power) | |
| print("Setting bluetooth to " .. power) | |
| result = hs.execute("blueutil --power " .. power) | |
| if result.rc ~= 0 then | |
| print("Unexpected result executing `blueutil`: rc=" .. result.rc .. " type=" .. result.type .. " output=" .. result.output) | |
| end | |
| end | |
| function f(event) |
| package main | |
| import ( | |
| "bufio" | |
| "net" | |
| ) | |
| type Client struct { | |
| incoming chan string | |
| outgoing chan string |
| diff --git a/src/nsterm.m b/src/nsterm.m | |
| --- a/src/nsterm.m | |
| +++ b/src/nsterm.m | |
| @@ -1401,7 +1401,7 @@ ns_get_color (const char *name, NSColor | |
| if (r >= 0.0) | |
| { | |
| - *col = [NSColor colorWithCalibratedRed: r green: g blue: b alpha: 1.0]; | |
| + *col = [NSColor colorWithSRGBRed: r green: g blue: b alpha: 1.0]; | |
| UNBLOCK_INPUT; |
| # >> First workflow | |
| git svn clone <svn_repo> | |
| git checkout -b featureZ | |
| # hack hack hack | |
| git commit -a | |
| git svn rebase | |
| git svn dcommit # you can add -e to enter new |