@interactive-inc/claude-funnel 0.23.1 → 0.25.0
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 +41 -26
- package/dist/bin.js +372 -355
- package/dist/connectors/slack.d.ts +1 -1
- package/dist/connectors/slack.js +1 -1
- package/dist/gateway/daemon.js +189 -186
- package/dist/index.d.ts +88 -27
- package/dist/index.js +159 -110
- package/dist/{slack-connector-schema-Bi2DyeZw.js → slack-connector-schema-B0NyhxqQ.js} +91 -2
- package/dist/{slack-listener-tQH7cXU7.d.ts → slack-listener-DbNCPMqY.d.ts} +3 -0
- package/funnel.schema.json +41 -19
- package/package.json +1 -1
package/funnel.schema.json
CHANGED
|
@@ -14,24 +14,6 @@
|
|
|
14
14
|
"name": {
|
|
15
15
|
"type": "string"
|
|
16
16
|
},
|
|
17
|
-
"options": {
|
|
18
|
-
"type": "array",
|
|
19
|
-
"items": {
|
|
20
|
-
"type": "string"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"env": {
|
|
24
|
-
"type": "object",
|
|
25
|
-
"propertyNames": {
|
|
26
|
-
"type": "string"
|
|
27
|
-
},
|
|
28
|
-
"additionalProperties": {
|
|
29
|
-
"type": "string"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
"resume": {
|
|
33
|
-
"type": "boolean"
|
|
34
|
-
},
|
|
35
17
|
"connectors": {
|
|
36
18
|
"type": "array",
|
|
37
19
|
"items": {
|
|
@@ -52,6 +34,9 @@
|
|
|
52
34
|
"appToken": {
|
|
53
35
|
"type": "string"
|
|
54
36
|
},
|
|
37
|
+
"minify": {
|
|
38
|
+
"type": "boolean"
|
|
39
|
+
},
|
|
55
40
|
"env": {
|
|
56
41
|
"type": "object",
|
|
57
42
|
"properties": {
|
|
@@ -148,6 +133,43 @@
|
|
|
148
133
|
],
|
|
149
134
|
"additionalProperties": false
|
|
150
135
|
}
|
|
136
|
+
},
|
|
137
|
+
"profiles": {
|
|
138
|
+
"type": "array",
|
|
139
|
+
"items": {
|
|
140
|
+
"type": "object",
|
|
141
|
+
"properties": {
|
|
142
|
+
"name": {
|
|
143
|
+
"type": "string"
|
|
144
|
+
},
|
|
145
|
+
"channel": {
|
|
146
|
+
"type": "string"
|
|
147
|
+
},
|
|
148
|
+
"options": {
|
|
149
|
+
"type": "array",
|
|
150
|
+
"items": {
|
|
151
|
+
"type": "string"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"env": {
|
|
155
|
+
"type": "object",
|
|
156
|
+
"propertyNames": {
|
|
157
|
+
"type": "string"
|
|
158
|
+
},
|
|
159
|
+
"additionalProperties": {
|
|
160
|
+
"type": "string"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"resume": {
|
|
164
|
+
"type": "boolean"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"required": [
|
|
168
|
+
"name",
|
|
169
|
+
"channel"
|
|
170
|
+
],
|
|
171
|
+
"additionalProperties": false
|
|
172
|
+
}
|
|
151
173
|
}
|
|
152
174
|
},
|
|
153
175
|
"required": [
|
|
@@ -155,6 +177,6 @@
|
|
|
155
177
|
],
|
|
156
178
|
"additionalProperties": false,
|
|
157
179
|
"title": "Funnel per-repo launch config",
|
|
158
|
-
"description": "Used by `fnl claude`
|
|
180
|
+
"description": "Used by `fnl claude` to declare channels (transport: connectors to materialize into ~/.funnel/settings.json on launch) and profiles (launch recipe: options / env / resume) bound to those channels."
|
|
159
181
|
}
|
|
160
182
|
|
package/package.json
CHANGED