@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,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeovery/claude-technical-workflows",
3
- "version": "2.1.32",
3
+ "version": "2.1.33",
4
4
  "description": "Technical workflow skills & commands for Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Lee Overy <me@leeovery.com>",
@@ -1,15 +1,22 @@
1
1
  # Tick: Authoring
2
2
 
3
- ## Sandbox Mode and Large Descriptions
3
+ ## Descriptions: Inline Only
4
4
 
5
- Bash heredocs (`$(cat <<'EOF'...EOF)`) create temp files that sandbox mode blocks, resulting in empty descriptions being set silently. Do **not** use `dangerouslyDisableSandbox` — it forces user approval on every call.
5
+ **CRITICAL**: Always pass descriptions directly as inline quoted strings. Never use workarounds.
6
6
 
7
- Instead, use the **Write tool + cat pattern**:
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
- 1. Use the **Write tool** to save the description to `$TMPDIR/tick-desc.txt` — this bypasses sandbox because it uses Claude Code's file writing, not bash
10
- 2. Run the tick command with `--description "$(cat $TMPDIR/tick-desc.txt)"` in normal sandbox mode `cat` just reads, no temp files needed
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
- This works for both `tick create --description` and `tick update --description`.
19
+ If a description contains double quotes, escape them with `\"`. That's it.
13
20
 
14
21
  ## Task Storage
15
22