@marktoflow/integrations 2.0.0-alpha.12 → 2.0.0-alpha.13
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 +26 -0
- package/dist/adapters/ollama-types.d.ts +746 -0
- package/dist/adapters/ollama-types.d.ts.map +1 -0
- package/dist/adapters/ollama-types.js +65 -0
- package/dist/adapters/ollama-types.js.map +1 -0
- package/dist/adapters/ollama.d.ts +160 -0
- package/dist/adapters/ollama.d.ts.map +1 -1
- package/dist/adapters/ollama.js +425 -3
- package/dist/adapters/ollama.js.map +1 -1
- package/dist/services/airtable.d.ts +144 -0
- package/dist/services/airtable.d.ts.map +1 -1
- package/dist/services/airtable.js +8 -22
- package/dist/services/airtable.js.map +1 -1
- package/dist/services/base-client.d.ts +102 -0
- package/dist/services/base-client.d.ts.map +1 -0
- package/dist/services/base-client.js +219 -0
- package/dist/services/base-client.js.map +1 -0
- package/dist/services/confluence.d.ts +202 -0
- package/dist/services/confluence.d.ts.map +1 -1
- package/dist/services/confluence.js +11 -26
- package/dist/services/confluence.js.map +1 -1
- package/dist/services/discord.d.ts +210 -0
- package/dist/services/discord.d.ts.map +1 -1
- package/dist/services/discord.js +7 -23
- package/dist/services/discord.js.map +1 -1
- package/dist/services/notion.d.ts +205 -0
- package/dist/services/notion.d.ts.map +1 -1
- package/dist/services/notion.js +7 -15
- package/dist/services/notion.js.map +1 -1
- package/dist/services/supabase.d.ts +200 -0
- package/dist/services/supabase.d.ts.map +1 -1
- package/dist/services/supabase.js +25 -20
- package/dist/services/supabase.js.map +1 -1
- package/dist/services/teams.d.ts.map +1 -1
- package/dist/services/teams.js +35 -5
- package/dist/services/teams.js.map +1 -1
- package/dist/services/telegram.d.ts +250 -0
- package/dist/services/telegram.d.ts.map +1 -1
- package/dist/services/telegram.js +31 -32
- package/dist/services/telegram.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -63,6 +63,8 @@ This package depends on `@marktoflow/core` which will be installed automatically
|
|
|
63
63
|
|
|
64
64
|
## Quick Start
|
|
65
65
|
|
|
66
|
+
All integrations work with the workflow examples in [examples/](https://github.com/marktoflow/marktoflow/tree/main/examples). See these for production-ready templates.
|
|
67
|
+
|
|
66
68
|
### Using in Workflows
|
|
67
69
|
|
|
68
70
|
Integrations are designed to work seamlessly in workflow YAML definitions:
|
|
@@ -143,6 +145,11 @@ inputs:
|
|
|
143
145
|
text: '*Status:* ✅ Success'
|
|
144
146
|
```
|
|
145
147
|
|
|
148
|
+
**Production Examples:**
|
|
149
|
+
- [daily-standup](https://github.com/marktoflow/marktoflow/tree/main/examples/daily-standup) - Daily standup reports
|
|
150
|
+
- [incident-response](https://github.com/marktoflow/marktoflow/tree/main/examples/incident-response) - Incident coordination
|
|
151
|
+
- [codebase-qa](https://github.com/marktoflow/marktoflow/tree/main/examples/codebase-qa) - AI Q&A via Slack
|
|
152
|
+
|
|
146
153
|
### GitHub
|
|
147
154
|
|
|
148
155
|
Manage repositories, PRs, issues, and more.
|
|
@@ -173,6 +180,11 @@ inputs:
|
|
|
173
180
|
body: 'This PR adds...'
|
|
174
181
|
```
|
|
175
182
|
|
|
183
|
+
**Production Examples:**
|
|
184
|
+
- [code-review](https://github.com/marktoflow/marktoflow/tree/main/examples/code-review) - Automated PR reviews
|
|
185
|
+
- [copilot-code-review](https://github.com/marktoflow/marktoflow/tree/main/examples/copilot-code-review) - Advanced Copilot reviews
|
|
186
|
+
- [dependency-update](https://github.com/marktoflow/marktoflow/tree/main/examples/dependency-update) - Dependency PR automation
|
|
187
|
+
|
|
176
188
|
### Jira
|
|
177
189
|
|
|
178
190
|
Issue tracking and project management.
|
|
@@ -206,6 +218,11 @@ inputs:
|
|
|
206
218
|
name: Bug
|
|
207
219
|
```
|
|
208
220
|
|
|
221
|
+
**Production Examples:**
|
|
222
|
+
- [daily-standup](https://github.com/marktoflow/marktoflow/tree/main/examples/daily-standup) - Daily standup automation
|
|
223
|
+
- [sprint-planning](https://github.com/marktoflow/marktoflow/tree/main/examples/sprint-planning) - AI-assisted sprint planning
|
|
224
|
+
- [incident-response](https://github.com/marktoflow/marktoflow/tree/main/examples/incident-response) - Incident ticket creation
|
|
225
|
+
|
|
209
226
|
### Gmail
|
|
210
227
|
|
|
211
228
|
Email operations with webhook support.
|
|
@@ -235,6 +252,9 @@ inputs:
|
|
|
235
252
|
body: 'Here is your daily report...'
|
|
236
253
|
```
|
|
237
254
|
|
|
255
|
+
**Production Examples:**
|
|
256
|
+
- [gmail-notification](https://github.com/marktoflow/marktoflow/tree/main/examples/gmail-notification) - Email automation workflow
|
|
257
|
+
|
|
238
258
|
### Outlook
|
|
239
259
|
|
|
240
260
|
Microsoft 365 email and calendar.
|
|
@@ -999,6 +1019,9 @@ steps:
|
|
|
999
1019
|
prompt: 'Explain quantum computing'
|
|
1000
1020
|
```
|
|
1001
1021
|
|
|
1022
|
+
**Production Examples:**
|
|
1023
|
+
- [doc-maintenance](https://github.com/marktoflow/marktoflow/tree/main/examples/doc-maintenance) - Smart documentation updates with Ollama
|
|
1024
|
+
|
|
1002
1025
|
### Claude Agent
|
|
1003
1026
|
|
|
1004
1027
|
Anthropic Claude Agent SDK integration with agentic workflows.
|
|
@@ -1272,6 +1295,9 @@ copilot auth login
|
|
|
1272
1295
|
- Infinite sessions (automatic context compaction)
|
|
1273
1296
|
- Multi-turn conversations
|
|
1274
1297
|
|
|
1298
|
+
**Production Examples:**
|
|
1299
|
+
- [copilot-code-review](https://github.com/marktoflow/marktoflow/tree/main/examples/copilot-code-review) - Advanced PR review with GitHub Copilot
|
|
1300
|
+
|
|
1275
1301
|
## Advanced Usage
|
|
1276
1302
|
|
|
1277
1303
|
### Custom Integration
|