We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 709dfcc commit be92f52Copy full SHA for be92f52
.claude/commands/add-block.md
@@ -60,6 +60,8 @@ export const {ServiceName}Block: BlockConfig = {
60
61
## SubBlock Types Reference
62
63
+**Critical:** Every subblock `id` must be unique within the block. Duplicate IDs cause conflicts even with different conditions.
64
+
65
### Text Inputs
66
```typescript
67
// Single-line input
.claude/commands/add-tools.md
@@ -87,6 +87,8 @@ export const {serviceName}{Action}Tool: ToolConfig<
87
}),
88
body: (params) => ({
89
// Request body - only for POST/PUT/PATCH
90
+ // Trim ID fields to prevent copy-paste whitespace errors:
91
+ // userId: params.userId?.trim(),
92
93
},
94
0 commit comments