feat(cursor): add personal Cursor skills#13
Open
sstanley-yelnatss wants to merge 1 commit into
Open
Conversation
Add grill-me, human-copywriting-flags, kimi-webbridge, and yc-research-framework under global/cursor/skills/ with install docs and per-skill usage guide in global/cursor/README.md. Co-authored-by: Cursor <cursoragent@cursor.com>
There was a problem hiding this comment.
Pull request overview
Adds a new global/cursor/ target with personal Cursor Agent Skills plus a dedicated README describing installation and per-skill usage, aligning with the PR goal of making these skills easy to install and invoke globally in Cursor.
Changes:
- Added four new Cursor skills under
global/cursor/skills/(grill-me, human-copywriting-flags, kimi-webbridge, yc-research-framework). - Added Kimi WebBridge operational runbook (
references/operations.md) for install/start/diagnose routing. - Added
global/cursor/README.mdwith install instructions and a skills usage table.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
| global/cursor/skills/yc-research-framework/SKILL.md | Adds a structured YC-style research workflow and output template. |
| global/cursor/skills/kimi-webbridge/SKILL.md | Documents a local-daemon browser control skill and its tool usage patterns. |
| global/cursor/skills/kimi-webbridge/references/operations.md | Adds operational routing for installation and troubleshooting. |
| global/cursor/skills/human-copywriting-flags/SKILL.md | Adds writing guidance to reduce common AI “tics” in prose. |
| global/cursor/skills/grill-me/SKILL.md | Adds an interview-style “stress test” skill description. |
| global/cursor/README.md | Adds install instructions and per-skill “how to use” guidance for Cursor. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+81
to
+83
| ## 3. Competitive Landscape | ||
| | Competitor | Differentiator | Weakness | | ||
|
|
| ─── | ||
| ``` | ||
|
|
||
| Fill each section from the workflow. Keep tables and bullets scannable; use concrete numbers and sources where possible. |
|
|
||
| ### 1. Em dashes | ||
|
|
||
| You know the one. That long dash jammed into every other sentence to squeeze in an aside or add fake emphasis. Three of them in a single paragraph and the whole thing starts reading like tic. |
|
|
||
| ✅ Green flag: | ||
|
|
||
| “Slack solved the wrong problem brilliantly. Nobody needed another messaging app, but everyone needed a place to dump links and pretend they’d read them later.” |
Comment on lines
+6
to
+13
| Interview me relentlessly about every aspect of this plan until | ||
| we reach a shared understanding. Walk down each branch of the design | ||
| tree resolving dependencies between decisions one by one. | ||
|
|
||
| If a question can be answered by exploring the codebase, explore | ||
| the codebase instead. | ||
|
|
||
| For each question, provide your recommended answer. |
Comment on lines
+19
to
+22
| - **`running: true` and `extension_connected: true`** — healthy. Proceed with the tool calls below. | ||
| - **Anything else** (command not found, `running: false`, `extension_connected: false`, errors) — **Read `references/operations.md`** in this skill directory. It has the install / start / diagnose routing table. | ||
|
|
||
| Don't guess fixes here — every non-healthy state is handled in `references/operations.md`. |
| |---|---| | ||
| | `command not found` or binary missing | Not installed. Run: `curl -fsSL https://cdn.kimi.com/webbridge/install.sh \| bash` | | ||
| | `{"running": false, ...}` | Daemon not running. Run: `~/.kimi-webbridge/bin/kimi-webbridge start` | | ||
| | `{"running": true, "extension_connected": false, ...}` | Extension not connected. Tell the user: "If you've already installed the Kimi WebBridge extension, please open your browser and try again. If not yet installed, see https://www.kimi.com/features/webbridge (中文: https://www.kimi.com/zh-cn/features/webbridge) for install instructions." | |
| |---|---| | ||
| | `start` fails with "address already in use" | `~/.kimi-webbridge/bin/kimi-webbridge stop && ~/.kimi-webbridge/bin/kimi-webbridge start`; if that fails, `lsof -i :10086` to find the conflicting process. | | ||
| | Tool calls time out | `~/.kimi-webbridge/bin/kimi-webbridge logs -n 100` — check for `[error]` / `panic` lines. | | ||
| | `extension_connected` stays `false` after install | Browser extension not running. If the user has it installed, ask them to open the browser and retry; otherwise direct them to https://www.kimi.com/features/webbridge (中文: https://www.kimi.com/zh-cn/features/webbridge). | |
Comment on lines
+27
to
+31
| # macOS / Linux | ||
| ln -s "$(pwd)/global/cursor/skills/grill-me" ~/.cursor/skills/grill-me | ||
|
|
||
| # Windows (junction) | ||
| mklink /J "%USERPROFILE%\.cursor\skills\grill-me" "C:\path\to\repo\global\cursor\skills\grill-me" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add grill-me, human-copywriting-flags, kimi-webbridge, and yc-research-framework under global/cursor/skills/ with install docs and per-skill usage guide in global/cursor/README.md.