// catalog · ls -la /lab/tools
Catalog/page 11/24
Showing entries 61 to 66 of 139 · click any row to launch
- 061 Writing proofread:// Proofreads any text. Returns the corrected version + a numbered list of every change made (with the reason). Catches grammar, clarity issues, redundant phrasing, awkward sentence breaks. Doesn't silently rewrite your voice.
- 062 Writing press-release:// Generates a press release in standard wire format. You provide: the news, the org, the date, one quote, the boilerplate. Output: headline, dateline, lead paragraph, three body paragraphs, "About <org>" boilerplate, contact line.
- 063 Writing apology-letter:// Drafts a sincere apology for a specific mistake. Avoids the corporate weasel patterns ("we regret if anyone was offended", "mistakes were made"). Owns the action, names the impact, says what changes. Three variants: 1-line, paragraph, full message.
- 064 Writing performance-review:// Performance-review draft (self-eval OR manager-to-direct). Asks for specific accomplishments, then writes a section-by-section review: outcomes, growth, areas to develop. Names concrete contributions, avoids vague filler.
- 065 Dev Tools regex-tester:// Tests a regex against a list of strings. Shows which match, what each named/positional capture group captured, and suggests 2-3 edge-case test inputs the user probably didn't think of. Catches the failures before production does.
- 066 Dev Tools sql-optimize:// Paste a slow SQL query and (optionally) its EXPLAIN output + table sizes. Returns ranked optimization suggestions: missing indexes, join reordering, subquery flattening, query rewrites. Each with expected impact and the risk of applying it.