@leeovery/claude-technical-workflows 2.1.32 → 2.1.33
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/package.json
CHANGED
|
@@ -1,15 +1,22 @@
|
|
|
1
1
|
# Tick: Authoring
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## Descriptions: Inline Only
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
**CRITICAL**: Always pass descriptions directly as inline quoted strings. Never use workarounds.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
```bash
|
|
8
|
+
tick create "Title" --parent <id> --description "Full description here.
|
|
9
|
+
|
|
10
|
+
Multi-line content works fine inside double quotes."
|
|
11
|
+
```
|
|
8
12
|
|
|
9
|
-
|
|
10
|
-
|
|
13
|
+
**Do NOT**:
|
|
14
|
+
- Use heredocs (`<<'EOF'`) — sandbox blocks the temp files they create
|
|
15
|
+
- Use the Write tool to create temp files — triggers approval prompts outside the project directory
|
|
16
|
+
- Use Bash functions, variables, or subshells to construct the description
|
|
17
|
+
- Write temp files anywhere (including `$TMPDIR`, `/tmp`, or the working directory)
|
|
11
18
|
|
|
12
|
-
|
|
19
|
+
If a description contains double quotes, escape them with `\"`. That's it.
|
|
13
20
|
|
|
14
21
|
## Task Storage
|
|
15
22
|
|