@joshualelon/clawdbot-skill-flow 0.5.0 → 0.5.1
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/clawdbot.plugin.json +7 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/clawdbot.plugin.json
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
"type": "object",
|
|
5
5
|
"additionalProperties": false,
|
|
6
6
|
"properties": {
|
|
7
|
+
"flowsDir": {
|
|
8
|
+
"type": "string"
|
|
9
|
+
},
|
|
7
10
|
"sessionTimeoutMinutes": {
|
|
8
11
|
"type": "number",
|
|
9
12
|
"minimum": 1,
|
|
@@ -28,6 +31,10 @@
|
|
|
28
31
|
}
|
|
29
32
|
},
|
|
30
33
|
"uiHints": {
|
|
34
|
+
"flowsDir": {
|
|
35
|
+
"label": "Flows Directory",
|
|
36
|
+
"help": "Custom directory for flow definitions (default: ~/.clawdbot/flows). Use ~/clawd/jobs for job tracking system."
|
|
37
|
+
},
|
|
31
38
|
"sessionTimeoutMinutes": {
|
|
32
39
|
"label": "Session Timeout (minutes)",
|
|
33
40
|
"help": "How long before inactive flow sessions expire (1-1440 minutes)"
|
package/index.ts
CHANGED