kanon-cli 0.1.4 → 0.1.5
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/bin/kanon.js +1 -1
- package/package.json +1 -1
- package/src/prompts/templates.js +6 -12
package/bin/kanon.js
CHANGED
package/package.json
CHANGED
package/src/prompts/templates.js
CHANGED
|
@@ -17,18 +17,10 @@ kanon card update <id> --add-label "x" — Add a label
|
|
|
17
17
|
kanon card <id> — Re-read card (only if needed)
|
|
18
18
|
kanon board — Board context (only if you need list names or members)
|
|
19
19
|
kanon cards — List all cards (only if task requires it)
|
|
20
|
-
kanon subcard <parentId>
|
|
21
|
-
kanon
|
|
22
|
-
kanon
|
|
23
|
-
kanon
|
|
24
|
-
kanon sheet <id> — Read sheet data
|
|
25
|
-
kanon sheet <id> set <tab> <row> <col> "val" — Set cell (0-indexed)
|
|
26
|
-
kanon sheet <id> export — CSV output
|
|
27
|
-
kanon note <id> — Read note text
|
|
28
|
-
kanon note <id> set "text" — Set note text
|
|
29
|
-
kanon note <id> append "text" — Append to note
|
|
30
|
-
kanon canvas <id> — Read canvas objects & connections
|
|
31
|
-
kanon help-all — Full command reference
|
|
20
|
+
kanon subcard <parentId> — List subcards
|
|
21
|
+
kanon attach <id> <filepath> — Attach a file to a card
|
|
22
|
+
kanon download <id> <filename> — Download an attachment
|
|
23
|
+
kanon help-all — Full command reference (sheets, notes, canvas, subcards, attachments, labels, etc.)
|
|
32
24
|
\`\`\`
|
|
33
25
|
|
|
34
26
|
Be concise and fast. Do not explain what you will do — just do it.`;
|
|
@@ -41,6 +33,8 @@ export const DEFAULT_TASK = `## Instructions
|
|
|
41
33
|
\`kanon card update <id> --move "Review" --done\`
|
|
42
34
|
5. If something is unclear, add a comment with your questions instead of guessing.
|
|
43
35
|
|
|
36
|
+
If you create files that are useful as deliverables (documents, exports, etc.), consider attaching them to the card with \`kanon attach <id> <filepath>\`.
|
|
37
|
+
|
|
44
38
|
Do not run \`kanon board\`, \`kanon cards\`, or \`kanon help-all\` unless the task specifically requires that information.
|
|
45
39
|
Do not modify cards you were not asked to work on.`;
|
|
46
40
|
|