zdev-skill 0.1.2 → 0.1.3
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.
- package/SKILL.md +14 -4
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -120,11 +120,21 @@ cd ~/.zdev/worktrees/project-feature
|
|
|
120
120
|
|
|
121
121
|
## Presenting Output
|
|
122
122
|
|
|
123
|
-
When showing zdev output to users
|
|
124
|
-
-
|
|
125
|
-
-
|
|
123
|
+
When showing zdev output to users:
|
|
124
|
+
- **Never put URLs inside markdown tables or code blocks** — they won't be clickable
|
|
125
|
+
- Place URLs on their own line as plain text
|
|
126
|
+
- Use bold labels before URLs, not inline formatting
|
|
126
127
|
|
|
127
|
-
|
|
128
|
+
Example:
|
|
129
|
+
```
|
|
130
|
+
**Local:** http://localhost:5185
|
|
131
|
+
**Public:** https://project-feature.dev.example.com
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
NOT like this:
|
|
135
|
+
```
|
|
136
|
+
| Local | `http://localhost:5185` | ← URLs not clickable!
|
|
137
|
+
```
|
|
128
138
|
|
|
129
139
|
## After PR is Merged
|
|
130
140
|
|