You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge duplicate Skills sections into single section with complete coverage
- Remove redundant '## Skills' section (lines 31-80)
- Rename '## Cursor Skills' to '## Skills'
- Add missing 'package-deps' skill from first section
- All 6 skills now in one section: review-code, fix-pr, fix-code, debug-edge, package-deps, gh-review
- Uses the more detailed descriptions from the second section
Copy file name to clipboardExpand all lines: docs/agent-setup.md
+10-52Lines changed: 10 additions & 52 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,58 +30,6 @@ Execute a planning document and iteratively refine the implementation until it p
30
30
31
31
## Skills
32
32
33
-
Skills are defined in `.cursor/skills/` and are automatically invoked by Cursor when relevant. They can also be referenced from commands via `@.cursor/skills/<name>/SKILL.md`.
34
-
35
-
### debug-edge
36
-
37
-
Compile, launch, and debug the Edge wallet app on an iOS simulator.
38
-
39
-
**Prerequisites**: Xcode, working directory `edge-react-gui`, MCP servers `xcodebuild` and `mobile-mcp`
40
-
41
-
**Workflow**: Install deps → Clean iOS → Prepare iOS → Start Metro → Build and launch → Login if needed
42
-
43
-
**Tip**: For plugin repo debugging (edge-core-js, edge-currency-accountbased, edge-exchange-plugins, edge-currency-plugins), use `log.warn()` instead of `console.log` to see output in Metro logs.
44
-
45
-
### fix-code
46
-
47
-
Implement fixes from a plan document by editing code.
48
-
49
-
**Usage**: Provide a plan document path (typically generated by `fix-pr` or `review-code`).
50
-
51
-
**Workflow**: Parse plan → Edit files → Run `yarn precommit` → Present summary
52
-
53
-
**Constraints**: Does not commit or push. Leaves changes unstaged for user review.
54
-
55
-
### fix-pr
56
-
57
-
Address reviewer comments on a GitHub pull request.
58
-
59
-
**Usage**: Provide a GitHub PR URL or number.
60
-
61
-
**Workflow**: Collect reviewer comments → Create fix plan → Pause for user iteration → Implement fixes with fixup commits → Push with `--force-with-lease`
62
-
63
-
**Constraints**: Does not auto-squash. Leaves fixup commits visible for reviewer.
64
-
65
-
### package-deps
66
-
67
-
Package local dependency repos and link them to edge-react-gui for testing.
68
-
69
-
**Usage**: Specify dependency repos to package.
70
-
71
-
**Workflow**: `npm pack` → Rename with UTC timestamp → Copy to edge-react-gui → Update `package.json` reference
72
-
73
-
### review-code
74
-
75
-
Review code changes for quality and convention compliance.
76
-
77
-
**Usage**: Provide a GitHub PR URL, PR number, local branch name, or "current branch".
78
-
79
-
**Workflow**: Checkout code → Get diff → Launch review subagents (`review-react`, `review-errors`, `review-state`, etc.) → Compile findings → Save to `/tmp` → For PRs: submit inline comments via GitHub MCP
80
-
81
-
---
82
-
83
-
## Cursor Skills
84
-
85
33
Skills are defined in `.cursor/skills/` and provide reusable workflows that commands and other skills can invoke. They are also surfaced to the agent automatically and can be triggered directly.
86
34
87
35
### review-code
@@ -130,6 +78,16 @@ Compile, launch, and debug the Edge wallet app on an iOS simulator.
130
78
131
79
---
132
80
81
+
### package-deps
82
+
83
+
Package local dependency repos and link them to edge-react-gui for testing.
84
+
85
+
**Usage**: Specify dependency repos to package.
86
+
87
+
**Workflow**: `npm pack` → Rename with UTC timestamp → Copy to edge-react-gui → Update `package.json` reference
88
+
89
+
---
90
+
133
91
### gh-review
134
92
135
93
Orchestrate an interactive GitHub PR review session using the `gh` CLI.
0 commit comments