@tanagram/cli 0.1.30 → 0.1.31
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 +23 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -129,6 +129,29 @@ If you prefer to manually edit your settings, add this to your `~/.claude/settin
|
|
|
129
129
|
}
|
|
130
130
|
```
|
|
131
131
|
|
|
132
|
+
For example, your full `settings.json` file might look like this:
|
|
133
|
+
|
|
134
|
+
```json
|
|
135
|
+
{
|
|
136
|
+
"alwaysThinkingEnabled": true,
|
|
137
|
+
"hooks": {
|
|
138
|
+
"PostToolUse": [
|
|
139
|
+
{
|
|
140
|
+
"matcher": "Edit|Write",
|
|
141
|
+
"hooks": [
|
|
142
|
+
{
|
|
143
|
+
"type": "command",
|
|
144
|
+
"command": "tanagram"
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
If you have existing hooks, you can merge this hook into your existing config.
|
|
154
|
+
|
|
132
155
|
|
|
133
156
|
## How It Works
|
|
134
157
|
|