canicode 0.10.0 → 0.10.1
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/README.md +3 -3
- package/dist/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/mcp/server.js +1 -1
- package/dist/mcp/server.js.map +1 -1
- package/package.json +1 -1
- package/skills/canicode-gotchas/SKILL.md +45 -23
- package/skills/canicode-roundtrip/SKILL.md +54 -8
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ Rule scores aren't guesswork. The calibration pipeline converts real Figma desig
|
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
59
|
# 1. Save your Figma token AND install the /canicode-roundtrip skill
|
|
60
|
-
canicode init --token figd_xxxxxxxxxxxxx
|
|
60
|
+
npx canicode init --token figd_xxxxxxxxxxxxx
|
|
61
61
|
|
|
62
62
|
# 2. Run the roundtrip on a Figma URL
|
|
63
63
|
/canicode-roundtrip https://www.figma.com/design/ABC123/MyDesign?node-id=1-234
|
|
@@ -116,7 +116,7 @@ Each issue is classified: **Blocking** > **Risk** > **Missing Info** > **Suggest
|
|
|
116
116
|
npx canicode analyze "https://www.figma.com/design/ABC123/MyDesign?node-id=1-234"
|
|
117
117
|
```
|
|
118
118
|
|
|
119
|
-
Setup: `canicode init --token figd_xxxxxxxxxxxxx` — saves the token AND installs the Claude Code skills (see below).
|
|
119
|
+
Setup: `npx canicode init --token figd_xxxxxxxxxxxxx` — saves the token AND installs the Claude Code skills (see below).
|
|
120
120
|
|
|
121
121
|
> **Get your token:** Figma → Settings → Security → Personal access tokens → Generate new token
|
|
122
122
|
|
|
@@ -157,7 +157,7 @@ For Cursor / Claude Desktop config, see [`docs/CUSTOMIZATION.md`](docs/CUSTOMIZA
|
|
|
157
157
|
<summary><strong>Claude Code Skills</strong> (lightweight, no MCP install)</summary>
|
|
158
158
|
|
|
159
159
|
```bash
|
|
160
|
-
canicode init --token figd_xxxxxxxxxxxxx
|
|
160
|
+
npx canicode init --token figd_xxxxxxxxxxxxx
|
|
161
161
|
```
|
|
162
162
|
|
|
163
163
|
Saves your Figma token AND installs three skills into `./.claude/skills/`:
|
package/dist/cli/index.js
CHANGED
|
@@ -4015,7 +4015,7 @@ function computeApplyContext(violation, instanceContext) {
|
|
|
4015
4015
|
}
|
|
4016
4016
|
|
|
4017
4017
|
// package.json
|
|
4018
|
-
var version2 = "0.10.
|
|
4018
|
+
var version2 = "0.10.1";
|
|
4019
4019
|
|
|
4020
4020
|
// src/core/engine/scoring.ts
|
|
4021
4021
|
function computeTotalScorePerCategory(configs) {
|