@interactive-inc/claude-funnel 0.15.2 → 0.17.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.
@@ -5,137 +5,150 @@
5
5
  "$schema": {
6
6
  "type": "string"
7
7
  },
8
- "channel": {
9
- "type": "string"
10
- },
11
- "options": {
12
- "type": "array",
13
- "items": {
14
- "type": "string"
15
- }
16
- },
17
- "env": {
18
- "type": "object",
19
- "propertyNames": {
20
- "type": "string"
21
- },
22
- "additionalProperties": {
23
- "type": "string"
24
- }
25
- },
26
- "connectors": {
8
+ "channels": {
9
+ "minItems": 1,
27
10
  "type": "array",
28
11
  "items": {
29
- "oneOf": [
30
- {
31
- "type": "object",
32
- "properties": {
33
- "type": {
34
- "type": "string",
35
- "const": "slack"
36
- },
37
- "name": {
38
- "type": "string"
39
- },
40
- "botToken": {
41
- "type": "string"
42
- },
43
- "appToken": {
44
- "type": "string"
45
- },
46
- "env": {
47
- "type": "object",
48
- "properties": {
49
- "botToken": {
50
- "type": "string"
51
- },
52
- "appToken": {
53
- "type": "string"
54
- }
55
- },
56
- "additionalProperties": false
57
- }
58
- },
59
- "required": [
60
- "type",
61
- "name"
62
- ],
63
- "additionalProperties": false
12
+ "type": "object",
13
+ "properties": {
14
+ "name": {
15
+ "type": "string"
64
16
  },
65
- {
66
- "type": "object",
67
- "properties": {
68
- "type": {
69
- "type": "string",
70
- "const": "discord"
71
- },
72
- "name": {
73
- "type": "string"
74
- },
75
- "botToken": {
76
- "type": "string"
77
- },
78
- "env": {
79
- "type": "object",
80
- "properties": {
81
- "botToken": {
82
- "type": "string"
83
- }
84
- },
85
- "additionalProperties": false
86
- }
87
- },
88
- "required": [
89
- "type",
90
- "name"
91
- ],
92
- "additionalProperties": false
17
+ "options": {
18
+ "type": "array",
19
+ "items": {
20
+ "type": "string"
21
+ }
93
22
  },
94
- {
23
+ "env": {
95
24
  "type": "object",
96
- "properties": {
97
- "type": {
98
- "type": "string",
99
- "const": "gh"
100
- },
101
- "name": {
102
- "type": "string"
103
- },
104
- "pollInterval": {
105
- "type": "integer",
106
- "exclusiveMinimum": 0,
107
- "maximum": 9007199254740991
108
- }
25
+ "propertyNames": {
26
+ "type": "string"
109
27
  },
110
- "required": [
111
- "type",
112
- "name"
113
- ],
114
- "additionalProperties": false
28
+ "additionalProperties": {
29
+ "type": "string"
30
+ }
115
31
  },
116
- {
117
- "type": "object",
118
- "properties": {
119
- "type": {
120
- "type": "string",
121
- "const": "schedule"
122
- },
123
- "name": {
124
- "type": "string"
125
- }
126
- },
127
- "required": [
128
- "type",
129
- "name"
130
- ],
131
- "additionalProperties": false
32
+ "connectors": {
33
+ "type": "array",
34
+ "items": {
35
+ "oneOf": [
36
+ {
37
+ "type": "object",
38
+ "properties": {
39
+ "type": {
40
+ "type": "string",
41
+ "const": "slack"
42
+ },
43
+ "name": {
44
+ "type": "string"
45
+ },
46
+ "botToken": {
47
+ "type": "string"
48
+ },
49
+ "appToken": {
50
+ "type": "string"
51
+ },
52
+ "env": {
53
+ "type": "object",
54
+ "properties": {
55
+ "botToken": {
56
+ "type": "string"
57
+ },
58
+ "appToken": {
59
+ "type": "string"
60
+ }
61
+ },
62
+ "additionalProperties": false
63
+ }
64
+ },
65
+ "required": [
66
+ "type",
67
+ "name"
68
+ ],
69
+ "additionalProperties": false
70
+ },
71
+ {
72
+ "type": "object",
73
+ "properties": {
74
+ "type": {
75
+ "type": "string",
76
+ "const": "discord"
77
+ },
78
+ "name": {
79
+ "type": "string"
80
+ },
81
+ "botToken": {
82
+ "type": "string"
83
+ },
84
+ "env": {
85
+ "type": "object",
86
+ "properties": {
87
+ "botToken": {
88
+ "type": "string"
89
+ }
90
+ },
91
+ "additionalProperties": false
92
+ }
93
+ },
94
+ "required": [
95
+ "type",
96
+ "name"
97
+ ],
98
+ "additionalProperties": false
99
+ },
100
+ {
101
+ "type": "object",
102
+ "properties": {
103
+ "type": {
104
+ "type": "string",
105
+ "const": "gh"
106
+ },
107
+ "name": {
108
+ "type": "string"
109
+ },
110
+ "pollInterval": {
111
+ "type": "integer",
112
+ "exclusiveMinimum": 0,
113
+ "maximum": 9007199254740991
114
+ }
115
+ },
116
+ "required": [
117
+ "type",
118
+ "name"
119
+ ],
120
+ "additionalProperties": false
121
+ },
122
+ {
123
+ "type": "object",
124
+ "properties": {
125
+ "type": {
126
+ "type": "string",
127
+ "const": "schedule"
128
+ },
129
+ "name": {
130
+ "type": "string"
131
+ }
132
+ },
133
+ "required": [
134
+ "type",
135
+ "name"
136
+ ],
137
+ "additionalProperties": false
138
+ }
139
+ ]
140
+ }
132
141
  }
133
- ]
142
+ },
143
+ "required": [
144
+ "name"
145
+ ],
146
+ "additionalProperties": false
134
147
  }
135
148
  }
136
149
  },
137
150
  "required": [
138
- "channel"
151
+ "channels"
139
152
  ],
140
153
  "additionalProperties": false,
141
154
  "title": "Funnel per-repo launch config",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@interactive-inc/claude-funnel",
3
- "version": "0.15.2",
3
+ "version": "0.17.0",
4
4
  "description": "Hub CLI that routes external events (Slack / GitHub / Discord) to Claude Code agents through subscription channels over MCP.",
5
5
  "keywords": [
6
6
  "bun",