Datasets:
Upload folder using huggingface_hub
Browse files- tool_adapters/alertmgr.yaml +139 -0
- tool_adapters/datapipe.yaml +138 -0
- tool_adapters/flowctl.yaml +139 -0
- tool_adapters/gh.yaml +190 -0
- tool_adapters/google.yaml +180 -0
- tool_adapters/jira.yaml +134 -0
- tool_adapters/kforge.yaml +132 -0
- tool_adapters/linear.yaml +129 -0
- tool_adapters/meshctl.yaml +140 -0
- tool_adapters/microsoft.yaml +162 -0
- tool_adapters/notion.yaml +141 -0
- tool_adapters/slack.yaml +87 -0
tool_adapters/alertmgr.yaml
ADDED
|
@@ -0,0 +1,139 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: alertmgr
|
| 2 |
+
description: Alert and incident management system for monitoring, escalation, and on-call coordination
|
| 3 |
+
binary: alertmgr
|
| 4 |
+
auth:
|
| 5 |
+
type: env_var
|
| 6 |
+
key: ALERTMGR_API_KEY
|
| 7 |
+
commands:
|
| 8 |
+
- name: alert list
|
| 9 |
+
description: List alerts with optional filtering by severity and status
|
| 10 |
+
args:
|
| 11 |
+
- name: severity
|
| 12 |
+
type: enum
|
| 13 |
+
required: false
|
| 14 |
+
description: Filter by alert severity
|
| 15 |
+
values: ["critical", "warning", "info"]
|
| 16 |
+
- name: status
|
| 17 |
+
type: enum
|
| 18 |
+
required: false
|
| 19 |
+
description: Filter by alert status
|
| 20 |
+
values: ["active", "acknowledged", "resolved"]
|
| 21 |
+
- name: service
|
| 22 |
+
type: string
|
| 23 |
+
required: false
|
| 24 |
+
description: Filter by originating service
|
| 25 |
+
- name: limit
|
| 26 |
+
type: int
|
| 27 |
+
required: false
|
| 28 |
+
description: Maximum number of alerts to return
|
| 29 |
+
output_format: json
|
| 30 |
+
side_effects: false
|
| 31 |
+
example: "alertmgr alert list --severity critical --status active"
|
| 32 |
+
|
| 33 |
+
- name: alert acknowledge
|
| 34 |
+
description: Acknowledge an active alert
|
| 35 |
+
args:
|
| 36 |
+
- name: id
|
| 37 |
+
type: string
|
| 38 |
+
required: true
|
| 39 |
+
description: Alert ID
|
| 40 |
+
- name: comment
|
| 41 |
+
type: string
|
| 42 |
+
required: true
|
| 43 |
+
description: Acknowledgment comment
|
| 44 |
+
output_format: json
|
| 45 |
+
side_effects: true
|
| 46 |
+
example: "alertmgr alert acknowledge --id alt-001 --comment 'Investigating now'"
|
| 47 |
+
|
| 48 |
+
- name: alert resolve
|
| 49 |
+
description: Resolve an acknowledged or active alert
|
| 50 |
+
args:
|
| 51 |
+
- name: id
|
| 52 |
+
type: string
|
| 53 |
+
required: true
|
| 54 |
+
description: Alert ID
|
| 55 |
+
- name: resolution
|
| 56 |
+
type: string
|
| 57 |
+
required: true
|
| 58 |
+
description: Resolution description
|
| 59 |
+
output_format: json
|
| 60 |
+
side_effects: true
|
| 61 |
+
example: "alertmgr alert resolve --id alt-001 --resolution 'Scaled up instances, load normalized'"
|
| 62 |
+
|
| 63 |
+
- name: rule create
|
| 64 |
+
description: Create an alerting rule based on metric conditions
|
| 65 |
+
args:
|
| 66 |
+
- name: name
|
| 67 |
+
type: string
|
| 68 |
+
required: true
|
| 69 |
+
description: Rule name (unique identifier)
|
| 70 |
+
- name: condition
|
| 71 |
+
type: string
|
| 72 |
+
required: true
|
| 73 |
+
description: "Alert condition expression (e.g. 'cpu_usage > 90 for 5m')"
|
| 74 |
+
- name: severity
|
| 75 |
+
type: enum
|
| 76 |
+
required: true
|
| 77 |
+
description: Alert severity when rule triggers
|
| 78 |
+
values: ["critical", "warning", "info"]
|
| 79 |
+
- name: notify
|
| 80 |
+
type: string
|
| 81 |
+
required: true
|
| 82 |
+
description: Notification channel (e.g. slack channel, email, pagerduty)
|
| 83 |
+
- name: description
|
| 84 |
+
type: string
|
| 85 |
+
required: false
|
| 86 |
+
description: Human-readable rule description
|
| 87 |
+
output_format: json
|
| 88 |
+
side_effects: true
|
| 89 |
+
example: "alertmgr rule create --name high-cpu --condition 'cpu_usage > 90 for 5m' --severity critical --notify '#ops-alerts'"
|
| 90 |
+
|
| 91 |
+
- name: escalation create
|
| 92 |
+
description: Create an escalation policy with ordered notification levels
|
| 93 |
+
args:
|
| 94 |
+
- name: name
|
| 95 |
+
type: string
|
| 96 |
+
required: true
|
| 97 |
+
description: Escalation policy name
|
| 98 |
+
- name: levels
|
| 99 |
+
type: json
|
| 100 |
+
required: true
|
| 101 |
+
description: "Ordered escalation levels as JSON array [{\"delay_minutes\": int, \"notify\": str}]"
|
| 102 |
+
output_format: json
|
| 103 |
+
side_effects: true
|
| 104 |
+
example: "alertmgr escalation create --name backend-escalation --levels '[{\"delay_minutes\": 0, \"notify\": \"on-call\"}, {\"delay_minutes\": 15, \"notify\": \"team-lead\"}, {\"delay_minutes\": 30, \"notify\": \"vp-eng\"}]'"
|
| 105 |
+
|
| 106 |
+
- name: oncall show
|
| 107 |
+
description: Show the current on-call schedule and active responder
|
| 108 |
+
args:
|
| 109 |
+
- name: team
|
| 110 |
+
type: string
|
| 111 |
+
required: false
|
| 112 |
+
description: Team name (defaults to all teams)
|
| 113 |
+
output_format: json
|
| 114 |
+
side_effects: false
|
| 115 |
+
example: "alertmgr oncall show --team backend"
|
| 116 |
+
|
| 117 |
+
- name: incident create
|
| 118 |
+
description: Create a new incident from one or more related alerts
|
| 119 |
+
args:
|
| 120 |
+
- name: title
|
| 121 |
+
type: string
|
| 122 |
+
required: true
|
| 123 |
+
description: Incident title
|
| 124 |
+
- name: severity
|
| 125 |
+
type: enum
|
| 126 |
+
required: true
|
| 127 |
+
description: Incident severity
|
| 128 |
+
values: ["critical", "warning", "info"]
|
| 129 |
+
- name: alerts
|
| 130 |
+
type: string
|
| 131 |
+
required: false
|
| 132 |
+
description: Comma-separated alert IDs to associate with this incident
|
| 133 |
+
- name: commander
|
| 134 |
+
type: string
|
| 135 |
+
required: false
|
| 136 |
+
description: Incident commander username
|
| 137 |
+
output_format: json
|
| 138 |
+
side_effects: true
|
| 139 |
+
example: "alertmgr incident create --title 'Database outage' --severity critical --alerts alt-001,alt-002 --commander alice"
|
tool_adapters/datapipe.yaml
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: datapipe
|
| 2 |
+
description: Data pipeline orchestrator for connecting sources, applying transformations, and routing to sinks on configurable schedules
|
| 3 |
+
binary: datapipe
|
| 4 |
+
auth:
|
| 5 |
+
type: env_var
|
| 6 |
+
key: DATAPIPE_API_KEY
|
| 7 |
+
commands:
|
| 8 |
+
- name: source list
|
| 9 |
+
description: List all configured data sources
|
| 10 |
+
args:
|
| 11 |
+
- name: type
|
| 12 |
+
type: enum
|
| 13 |
+
required: false
|
| 14 |
+
description: Filter by source type
|
| 15 |
+
values: ["postgres", "mysql", "s3", "api", "kafka", "mongodb"]
|
| 16 |
+
output_format: json
|
| 17 |
+
side_effects: false
|
| 18 |
+
example: "datapipe source list --type postgres"
|
| 19 |
+
|
| 20 |
+
- name: source connect
|
| 21 |
+
description: Register a new data source connection
|
| 22 |
+
args:
|
| 23 |
+
- name: name
|
| 24 |
+
type: string
|
| 25 |
+
required: true
|
| 26 |
+
description: Source name (unique identifier)
|
| 27 |
+
- name: type
|
| 28 |
+
type: enum
|
| 29 |
+
required: true
|
| 30 |
+
description: Source type
|
| 31 |
+
values: ["postgres", "mysql", "s3", "api", "kafka", "mongodb"]
|
| 32 |
+
- name: config
|
| 33 |
+
type: json
|
| 34 |
+
required: true
|
| 35 |
+
description: "Connection configuration as JSON (e.g. {\"host\": \"db.example.com\", \"port\": 5432, \"database\": \"analytics\"})"
|
| 36 |
+
output_format: json
|
| 37 |
+
side_effects: true
|
| 38 |
+
example: "datapipe source connect --name prod-db --type postgres --config '{\"host\": \"db.example.com\", \"port\": 5432, \"database\": \"analytics\"}'"
|
| 39 |
+
|
| 40 |
+
- name: transform create
|
| 41 |
+
description: Create a named transformation step with SQL logic
|
| 42 |
+
args:
|
| 43 |
+
- name: name
|
| 44 |
+
type: string
|
| 45 |
+
required: true
|
| 46 |
+
description: Transform name (unique identifier)
|
| 47 |
+
- name: sql
|
| 48 |
+
type: string
|
| 49 |
+
required: true
|
| 50 |
+
description: SQL transformation query
|
| 51 |
+
- name: source
|
| 52 |
+
type: string
|
| 53 |
+
required: true
|
| 54 |
+
description: Source name to read data from
|
| 55 |
+
- name: description
|
| 56 |
+
type: string
|
| 57 |
+
required: false
|
| 58 |
+
description: Human-readable description of the transformation
|
| 59 |
+
output_format: json
|
| 60 |
+
side_effects: true
|
| 61 |
+
example: "datapipe transform create --name daily-revenue --sql 'SELECT date, SUM(amount) as revenue FROM orders GROUP BY date' --source prod-db"
|
| 62 |
+
|
| 63 |
+
- name: transform run
|
| 64 |
+
description: Execute a transformation step
|
| 65 |
+
args:
|
| 66 |
+
- name: name
|
| 67 |
+
type: string
|
| 68 |
+
required: true
|
| 69 |
+
description: Transform name to execute
|
| 70 |
+
- name: dry-run
|
| 71 |
+
type: bool
|
| 72 |
+
required: false
|
| 73 |
+
description: Preview the output without writing results
|
| 74 |
+
- name: limit
|
| 75 |
+
type: int
|
| 76 |
+
required: false
|
| 77 |
+
description: Limit output rows (useful for preview)
|
| 78 |
+
output_format: json
|
| 79 |
+
side_effects: true
|
| 80 |
+
example: "datapipe transform run --name daily-revenue --dry-run --limit 10"
|
| 81 |
+
|
| 82 |
+
- name: sink create
|
| 83 |
+
description: Create a data sink destination
|
| 84 |
+
args:
|
| 85 |
+
- name: name
|
| 86 |
+
type: string
|
| 87 |
+
required: true
|
| 88 |
+
description: Sink name (unique identifier)
|
| 89 |
+
- name: type
|
| 90 |
+
type: enum
|
| 91 |
+
required: true
|
| 92 |
+
description: Sink type
|
| 93 |
+
values: ["s3", "bigquery", "warehouse", "postgres", "elasticsearch"]
|
| 94 |
+
- name: config
|
| 95 |
+
type: json
|
| 96 |
+
required: true
|
| 97 |
+
description: "Sink configuration as JSON (e.g. {\"bucket\": \"analytics-output\", \"prefix\": \"daily/\"})"
|
| 98 |
+
output_format: json
|
| 99 |
+
side_effects: true
|
| 100 |
+
example: "datapipe sink create --name analytics-lake --type s3 --config '{\"bucket\": \"analytics-output\", \"prefix\": \"daily/\"}'"
|
| 101 |
+
|
| 102 |
+
- name: pipeline create
|
| 103 |
+
description: Create a complete data pipeline connecting source, transforms, and sink with a schedule
|
| 104 |
+
args:
|
| 105 |
+
- name: name
|
| 106 |
+
type: string
|
| 107 |
+
required: true
|
| 108 |
+
description: Pipeline name (unique identifier)
|
| 109 |
+
- name: source
|
| 110 |
+
type: string
|
| 111 |
+
required: true
|
| 112 |
+
description: Source name
|
| 113 |
+
- name: transforms
|
| 114 |
+
type: string
|
| 115 |
+
required: true
|
| 116 |
+
description: Comma-separated list of transform names in execution order
|
| 117 |
+
- name: sink
|
| 118 |
+
type: string
|
| 119 |
+
required: true
|
| 120 |
+
description: Sink name
|
| 121 |
+
- name: schedule
|
| 122 |
+
type: string
|
| 123 |
+
required: true
|
| 124 |
+
description: Cron expression for scheduled execution
|
| 125 |
+
output_format: json
|
| 126 |
+
side_effects: true
|
| 127 |
+
example: "datapipe pipeline create --name daily-etl --source prod-db --transforms daily-revenue,add-dimensions --sink analytics-lake --schedule '0 2 * * *'"
|
| 128 |
+
|
| 129 |
+
- name: pipeline status
|
| 130 |
+
description: Check the status and execution history of a pipeline
|
| 131 |
+
args:
|
| 132 |
+
- name: name
|
| 133 |
+
type: string
|
| 134 |
+
required: true
|
| 135 |
+
description: Pipeline name
|
| 136 |
+
output_format: json
|
| 137 |
+
side_effects: false
|
| 138 |
+
example: "datapipe pipeline status --name daily-etl"
|
tool_adapters/flowctl.yaml
ADDED
|
@@ -0,0 +1,139 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: flowctl
|
| 2 |
+
description: Workflow engine and approval gate manager for orchestrating multi-step processes with human-in-the-loop approvals
|
| 3 |
+
binary: flowctl
|
| 4 |
+
auth:
|
| 5 |
+
type: env_var
|
| 6 |
+
key: FLOWCTL_API_KEY
|
| 7 |
+
commands:
|
| 8 |
+
- name: workflow list
|
| 9 |
+
description: List workflows with optional filtering by status
|
| 10 |
+
args:
|
| 11 |
+
- name: status
|
| 12 |
+
type: enum
|
| 13 |
+
required: false
|
| 14 |
+
description: Filter by workflow status
|
| 15 |
+
values: ["active", "paused", "completed", "failed"]
|
| 16 |
+
- name: owner
|
| 17 |
+
type: string
|
| 18 |
+
required: false
|
| 19 |
+
description: Filter by workflow owner
|
| 20 |
+
- name: limit
|
| 21 |
+
type: int
|
| 22 |
+
required: false
|
| 23 |
+
description: Maximum number of workflows to return
|
| 24 |
+
output_format: json
|
| 25 |
+
side_effects: false
|
| 26 |
+
example: "flowctl workflow list --status active --owner alice"
|
| 27 |
+
|
| 28 |
+
- name: workflow create
|
| 29 |
+
description: Create a new workflow definition with named steps
|
| 30 |
+
args:
|
| 31 |
+
- name: name
|
| 32 |
+
type: string
|
| 33 |
+
required: true
|
| 34 |
+
description: Workflow name (unique identifier)
|
| 35 |
+
- name: steps
|
| 36 |
+
type: json
|
| 37 |
+
required: true
|
| 38 |
+
description: "Ordered list of step definitions as JSON array [{\"name\": str, \"action\": str, \"config\": dict}]"
|
| 39 |
+
- name: description
|
| 40 |
+
type: string
|
| 41 |
+
required: false
|
| 42 |
+
description: Human-readable description
|
| 43 |
+
- name: owner
|
| 44 |
+
type: string
|
| 45 |
+
required: false
|
| 46 |
+
description: Workflow owner (defaults to current user)
|
| 47 |
+
output_format: json
|
| 48 |
+
side_effects: true
|
| 49 |
+
example: "flowctl workflow create --name deploy-prod --steps '[{\"name\": \"build\", \"action\": \"run_pipeline\"}, {\"name\": \"approve\", \"action\": \"gate\"}]'"
|
| 50 |
+
|
| 51 |
+
- name: workflow get
|
| 52 |
+
description: Get detailed workflow definition by ID
|
| 53 |
+
args:
|
| 54 |
+
- name: id
|
| 55 |
+
type: string
|
| 56 |
+
required: true
|
| 57 |
+
description: Workflow ID
|
| 58 |
+
output_format: json
|
| 59 |
+
side_effects: false
|
| 60 |
+
example: "flowctl workflow get --id wf-001"
|
| 61 |
+
|
| 62 |
+
- name: gate create
|
| 63 |
+
description: Create an approval gate attached to a workflow
|
| 64 |
+
args:
|
| 65 |
+
- name: workflow-id
|
| 66 |
+
type: string
|
| 67 |
+
required: true
|
| 68 |
+
description: Parent workflow ID
|
| 69 |
+
- name: approvers
|
| 70 |
+
type: string
|
| 71 |
+
required: true
|
| 72 |
+
description: Comma-separated list of required approver usernames
|
| 73 |
+
- name: timeout
|
| 74 |
+
type: int
|
| 75 |
+
required: false
|
| 76 |
+
description: Gate timeout in hours (0 = no timeout)
|
| 77 |
+
- name: min-approvals
|
| 78 |
+
type: int
|
| 79 |
+
required: false
|
| 80 |
+
description: Minimum number of approvals required (defaults to all approvers)
|
| 81 |
+
output_format: json
|
| 82 |
+
side_effects: true
|
| 83 |
+
example: "flowctl gate create --workflow-id wf-001 --approvers alice,bob --timeout 24 --min-approvals 1"
|
| 84 |
+
|
| 85 |
+
- name: gate approve
|
| 86 |
+
description: Approve a pending gate
|
| 87 |
+
args:
|
| 88 |
+
- name: id
|
| 89 |
+
type: string
|
| 90 |
+
required: true
|
| 91 |
+
description: Gate ID
|
| 92 |
+
- name: comment
|
| 93 |
+
type: string
|
| 94 |
+
required: false
|
| 95 |
+
description: Approval comment
|
| 96 |
+
output_format: json
|
| 97 |
+
side_effects: true
|
| 98 |
+
example: "flowctl gate approve --id gate-001 --comment 'Looks good, ship it'"
|
| 99 |
+
|
| 100 |
+
- name: gate reject
|
| 101 |
+
description: Reject a pending gate with a reason
|
| 102 |
+
args:
|
| 103 |
+
- name: id
|
| 104 |
+
type: string
|
| 105 |
+
required: true
|
| 106 |
+
description: Gate ID
|
| 107 |
+
- name: reason
|
| 108 |
+
type: string
|
| 109 |
+
required: true
|
| 110 |
+
description: Rejection reason
|
| 111 |
+
output_format: json
|
| 112 |
+
side_effects: true
|
| 113 |
+
example: "flowctl gate reject --id gate-001 --reason 'Missing test coverage'"
|
| 114 |
+
|
| 115 |
+
- name: run trigger
|
| 116 |
+
description: Trigger a workflow execution
|
| 117 |
+
args:
|
| 118 |
+
- name: workflow-id
|
| 119 |
+
type: string
|
| 120 |
+
required: true
|
| 121 |
+
description: Workflow ID to execute
|
| 122 |
+
- name: params
|
| 123 |
+
type: json
|
| 124 |
+
required: false
|
| 125 |
+
description: Runtime parameters as JSON object
|
| 126 |
+
output_format: json
|
| 127 |
+
side_effects: true
|
| 128 |
+
example: "flowctl run trigger --workflow-id wf-001 --params '{\"version\": \"2.1.0\"}'"
|
| 129 |
+
|
| 130 |
+
- name: run status
|
| 131 |
+
description: Check the status of a workflow run including step progress
|
| 132 |
+
args:
|
| 133 |
+
- name: id
|
| 134 |
+
type: string
|
| 135 |
+
required: true
|
| 136 |
+
description: Run execution ID
|
| 137 |
+
output_format: json
|
| 138 |
+
side_effects: false
|
| 139 |
+
example: "flowctl run status --id run-001"
|
tool_adapters/gh.yaml
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: github-cli
|
| 2 |
+
description: GitHub CLI for managing repositories, issues, pull requests, and API access
|
| 3 |
+
binary: gh
|
| 4 |
+
auth:
|
| 5 |
+
type: env_var
|
| 6 |
+
key: GITHUB_TOKEN
|
| 7 |
+
commands:
|
| 8 |
+
- name: issue list
|
| 9 |
+
description: List issues in a repository with optional filtering by state, label, and assignee
|
| 10 |
+
args:
|
| 11 |
+
- name: repo
|
| 12 |
+
type: string
|
| 13 |
+
required: true
|
| 14 |
+
description: Repository in owner/repo format
|
| 15 |
+
- name: state
|
| 16 |
+
type: enum
|
| 17 |
+
required: false
|
| 18 |
+
description: Filter by issue state
|
| 19 |
+
values: ["open", "closed", "all"]
|
| 20 |
+
- name: label
|
| 21 |
+
type: string
|
| 22 |
+
required: false
|
| 23 |
+
description: Filter by label name
|
| 24 |
+
- name: assignee
|
| 25 |
+
type: string
|
| 26 |
+
required: false
|
| 27 |
+
description: Filter by assignee username
|
| 28 |
+
- name: limit
|
| 29 |
+
type: int
|
| 30 |
+
required: false
|
| 31 |
+
description: Maximum number of issues to return
|
| 32 |
+
output_format: json
|
| 33 |
+
side_effects: false
|
| 34 |
+
example: "gh issue list --repo owner/repo --state open --label bug"
|
| 35 |
+
|
| 36 |
+
- name: issue create
|
| 37 |
+
description: Create a new issue in a repository
|
| 38 |
+
args:
|
| 39 |
+
- name: repo
|
| 40 |
+
type: string
|
| 41 |
+
required: true
|
| 42 |
+
description: Repository in owner/repo format
|
| 43 |
+
- name: title
|
| 44 |
+
type: string
|
| 45 |
+
required: true
|
| 46 |
+
description: Issue title
|
| 47 |
+
- name: body
|
| 48 |
+
type: string
|
| 49 |
+
required: false
|
| 50 |
+
description: Issue body text
|
| 51 |
+
- name: label
|
| 52 |
+
type: string
|
| 53 |
+
required: false
|
| 54 |
+
description: Label to apply (can be repeated)
|
| 55 |
+
- name: assignee
|
| 56 |
+
type: string
|
| 57 |
+
required: false
|
| 58 |
+
description: Username to assign
|
| 59 |
+
output_format: json
|
| 60 |
+
side_effects: true
|
| 61 |
+
example: "gh issue create --repo owner/repo --title 'Bug report' --body 'Details here' --label bug"
|
| 62 |
+
|
| 63 |
+
- name: issue edit
|
| 64 |
+
description: Edit an existing issue by number
|
| 65 |
+
args:
|
| 66 |
+
- name: number
|
| 67 |
+
type: int
|
| 68 |
+
required: true
|
| 69 |
+
description: Issue number (positional)
|
| 70 |
+
- name: repo
|
| 71 |
+
type: string
|
| 72 |
+
required: true
|
| 73 |
+
description: Repository in owner/repo format
|
| 74 |
+
- name: title
|
| 75 |
+
type: string
|
| 76 |
+
required: false
|
| 77 |
+
description: New issue title
|
| 78 |
+
- name: add-assignee
|
| 79 |
+
type: string
|
| 80 |
+
required: false
|
| 81 |
+
description: Username to add as assignee
|
| 82 |
+
- name: add-label
|
| 83 |
+
type: string
|
| 84 |
+
required: false
|
| 85 |
+
description: Label to add (can be repeated)
|
| 86 |
+
output_format: json
|
| 87 |
+
side_effects: true
|
| 88 |
+
example: "gh issue edit 42 --repo owner/repo --add-assignee alice --add-label critical"
|
| 89 |
+
|
| 90 |
+
- name: issue view
|
| 91 |
+
description: View a single issue by number
|
| 92 |
+
args:
|
| 93 |
+
- name: number
|
| 94 |
+
type: int
|
| 95 |
+
required: true
|
| 96 |
+
description: Issue number (positional)
|
| 97 |
+
- name: repo
|
| 98 |
+
type: string
|
| 99 |
+
required: true
|
| 100 |
+
description: Repository in owner/repo format
|
| 101 |
+
output_format: json
|
| 102 |
+
side_effects: false
|
| 103 |
+
example: "gh issue view 42 --repo owner/repo"
|
| 104 |
+
|
| 105 |
+
- name: pr list
|
| 106 |
+
description: List pull requests in a repository
|
| 107 |
+
args:
|
| 108 |
+
- name: repo
|
| 109 |
+
type: string
|
| 110 |
+
required: true
|
| 111 |
+
description: Repository in owner/repo format
|
| 112 |
+
- name: state
|
| 113 |
+
type: enum
|
| 114 |
+
required: false
|
| 115 |
+
description: Filter by PR state
|
| 116 |
+
values: ["open", "closed", "merged", "all"]
|
| 117 |
+
- name: author
|
| 118 |
+
type: string
|
| 119 |
+
required: false
|
| 120 |
+
description: Filter by PR author
|
| 121 |
+
output_format: json
|
| 122 |
+
side_effects: false
|
| 123 |
+
example: "gh pr list --repo owner/repo --state open"
|
| 124 |
+
|
| 125 |
+
- name: pr create
|
| 126 |
+
description: Create a new pull request
|
| 127 |
+
args:
|
| 128 |
+
- name: repo
|
| 129 |
+
type: string
|
| 130 |
+
required: true
|
| 131 |
+
description: Repository in owner/repo format
|
| 132 |
+
- name: title
|
| 133 |
+
type: string
|
| 134 |
+
required: true
|
| 135 |
+
description: Pull request title
|
| 136 |
+
- name: body
|
| 137 |
+
type: string
|
| 138 |
+
required: false
|
| 139 |
+
description: Pull request description
|
| 140 |
+
- name: base
|
| 141 |
+
type: string
|
| 142 |
+
required: false
|
| 143 |
+
description: Base branch name
|
| 144 |
+
- name: head
|
| 145 |
+
type: string
|
| 146 |
+
required: true
|
| 147 |
+
description: Head branch name
|
| 148 |
+
output_format: json
|
| 149 |
+
side_effects: true
|
| 150 |
+
example: "gh pr create --repo owner/repo --title 'Feature X' --head feature-x --base main"
|
| 151 |
+
|
| 152 |
+
- name: api
|
| 153 |
+
description: Make a raw GitHub API request to any endpoint
|
| 154 |
+
args:
|
| 155 |
+
- name: endpoint
|
| 156 |
+
type: string
|
| 157 |
+
required: true
|
| 158 |
+
description: API endpoint path (e.g. repos/owner/repo/commits)
|
| 159 |
+
- name: method
|
| 160 |
+
type: enum
|
| 161 |
+
required: false
|
| 162 |
+
description: HTTP method
|
| 163 |
+
values: ["GET", "POST", "PUT", "PATCH", "DELETE"]
|
| 164 |
+
- name: field
|
| 165 |
+
type: string
|
| 166 |
+
required: false
|
| 167 |
+
description: JSON field to send in request body (key=value)
|
| 168 |
+
output_format: json
|
| 169 |
+
side_effects: false
|
| 170 |
+
example: "gh api repos/owner/repo/commits"
|
| 171 |
+
|
| 172 |
+
- name: issue close
|
| 173 |
+
description: Close an issue by number
|
| 174 |
+
args:
|
| 175 |
+
- name: number
|
| 176 |
+
type: int
|
| 177 |
+
required: true
|
| 178 |
+
description: Issue number (positional)
|
| 179 |
+
- name: repo
|
| 180 |
+
type: string
|
| 181 |
+
required: true
|
| 182 |
+
description: Repository in owner/repo format
|
| 183 |
+
- name: reason
|
| 184 |
+
type: enum
|
| 185 |
+
required: false
|
| 186 |
+
description: Reason for closing
|
| 187 |
+
values: ["completed", "not_planned"]
|
| 188 |
+
output_format: json
|
| 189 |
+
side_effects: true
|
| 190 |
+
example: "gh issue close 42 --repo owner/repo --reason completed"
|
tool_adapters/google.yaml
ADDED
|
@@ -0,0 +1,180 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: google-workspace-cli
|
| 2 |
+
description: Google Workspace CLI for Calendar, Gmail, and Drive operations
|
| 3 |
+
binary: google
|
| 4 |
+
auth:
|
| 5 |
+
type: oauth
|
| 6 |
+
key: GOOGLE_OAUTH_CREDENTIALS
|
| 7 |
+
commands:
|
| 8 |
+
- name: calendar event list
|
| 9 |
+
description: List calendar events with optional date range filtering
|
| 10 |
+
args:
|
| 11 |
+
- name: calendar
|
| 12 |
+
type: string
|
| 13 |
+
required: false
|
| 14 |
+
description: Calendar ID (defaults to primary)
|
| 15 |
+
- name: start
|
| 16 |
+
type: datetime
|
| 17 |
+
required: false
|
| 18 |
+
description: Start datetime filter (ISO 8601)
|
| 19 |
+
- name: end
|
| 20 |
+
type: datetime
|
| 21 |
+
required: false
|
| 22 |
+
description: End datetime filter (ISO 8601)
|
| 23 |
+
- name: limit
|
| 24 |
+
type: int
|
| 25 |
+
required: false
|
| 26 |
+
description: Maximum number of events to return
|
| 27 |
+
output_format: json
|
| 28 |
+
side_effects: false
|
| 29 |
+
example: "google calendar event list --start 2026-03-01T00:00:00Z --end 2026-03-31T23:59:59Z"
|
| 30 |
+
|
| 31 |
+
- name: calendar event create
|
| 32 |
+
description: Create a new calendar event
|
| 33 |
+
args:
|
| 34 |
+
- name: title
|
| 35 |
+
type: string
|
| 36 |
+
required: true
|
| 37 |
+
description: Event title/summary
|
| 38 |
+
- name: start
|
| 39 |
+
type: datetime
|
| 40 |
+
required: true
|
| 41 |
+
description: Event start datetime (ISO 8601)
|
| 42 |
+
- name: end
|
| 43 |
+
type: datetime
|
| 44 |
+
required: true
|
| 45 |
+
description: Event end datetime (ISO 8601)
|
| 46 |
+
- name: description
|
| 47 |
+
type: string
|
| 48 |
+
required: false
|
| 49 |
+
description: Event description
|
| 50 |
+
- name: attendees
|
| 51 |
+
type: string
|
| 52 |
+
required: false
|
| 53 |
+
description: Comma-separated email addresses of attendees
|
| 54 |
+
- name: location
|
| 55 |
+
type: string
|
| 56 |
+
required: false
|
| 57 |
+
description: Event location
|
| 58 |
+
- name: calendar
|
| 59 |
+
type: string
|
| 60 |
+
required: false
|
| 61 |
+
description: Calendar ID (defaults to primary)
|
| 62 |
+
output_format: json
|
| 63 |
+
side_effects: true
|
| 64 |
+
example: "google calendar event create --title 'Team Standup' --start 2026-03-15T09:00:00Z --end 2026-03-15T09:30:00Z --attendees alice@co.com,bob@co.com"
|
| 65 |
+
|
| 66 |
+
- name: calendar event delete
|
| 67 |
+
description: Delete a calendar event by ID
|
| 68 |
+
args:
|
| 69 |
+
- name: id
|
| 70 |
+
type: string
|
| 71 |
+
required: true
|
| 72 |
+
description: Event ID
|
| 73 |
+
- name: calendar
|
| 74 |
+
type: string
|
| 75 |
+
required: false
|
| 76 |
+
description: Calendar ID (defaults to primary)
|
| 77 |
+
output_format: json
|
| 78 |
+
side_effects: true
|
| 79 |
+
example: "google calendar event delete --id evt-001"
|
| 80 |
+
|
| 81 |
+
- name: gmail send
|
| 82 |
+
description: Send an email via Gmail
|
| 83 |
+
args:
|
| 84 |
+
- name: to
|
| 85 |
+
type: string
|
| 86 |
+
required: true
|
| 87 |
+
description: Recipient email address
|
| 88 |
+
- name: subject
|
| 89 |
+
type: string
|
| 90 |
+
required: true
|
| 91 |
+
description: Email subject line
|
| 92 |
+
- name: body
|
| 93 |
+
type: string
|
| 94 |
+
required: true
|
| 95 |
+
description: Email body text
|
| 96 |
+
- name: cc
|
| 97 |
+
type: string
|
| 98 |
+
required: false
|
| 99 |
+
description: CC recipients (comma-separated)
|
| 100 |
+
output_format: json
|
| 101 |
+
side_effects: true
|
| 102 |
+
example: "google gmail send --to alice@co.com --subject 'Meeting Follow-up' --body 'Notes attached'"
|
| 103 |
+
|
| 104 |
+
- name: gmail search
|
| 105 |
+
description: Search Gmail messages by query
|
| 106 |
+
args:
|
| 107 |
+
- name: query
|
| 108 |
+
type: string
|
| 109 |
+
required: true
|
| 110 |
+
description: Gmail search query (supports Gmail search syntax)
|
| 111 |
+
- name: limit
|
| 112 |
+
type: int
|
| 113 |
+
required: false
|
| 114 |
+
description: Maximum number of results
|
| 115 |
+
- name: label
|
| 116 |
+
type: string
|
| 117 |
+
required: false
|
| 118 |
+
description: Filter by label
|
| 119 |
+
output_format: json
|
| 120 |
+
side_effects: false
|
| 121 |
+
example: "google gmail search --query 'from:alice subject:meeting' --limit 10"
|
| 122 |
+
|
| 123 |
+
- name: gmail list
|
| 124 |
+
description: List recent emails in the inbox
|
| 125 |
+
args:
|
| 126 |
+
- name: limit
|
| 127 |
+
type: int
|
| 128 |
+
required: false
|
| 129 |
+
description: Maximum number of emails to return
|
| 130 |
+
- name: label
|
| 131 |
+
type: string
|
| 132 |
+
required: false
|
| 133 |
+
description: Filter by label
|
| 134 |
+
- name: unread
|
| 135 |
+
type: bool
|
| 136 |
+
required: false
|
| 137 |
+
description: Only show unread messages
|
| 138 |
+
output_format: json
|
| 139 |
+
side_effects: false
|
| 140 |
+
example: "google gmail list --limit 20 --unread"
|
| 141 |
+
|
| 142 |
+
- name: drive list
|
| 143 |
+
description: List files in Google Drive
|
| 144 |
+
args:
|
| 145 |
+
- name: folder
|
| 146 |
+
type: string
|
| 147 |
+
required: false
|
| 148 |
+
description: Folder ID to list contents of
|
| 149 |
+
- name: type
|
| 150 |
+
type: enum
|
| 151 |
+
required: false
|
| 152 |
+
description: Filter by file type
|
| 153 |
+
values: ["document", "spreadsheet", "presentation", "folder", "pdf", "image"]
|
| 154 |
+
- name: limit
|
| 155 |
+
type: int
|
| 156 |
+
required: false
|
| 157 |
+
description: Maximum number of files to return
|
| 158 |
+
output_format: json
|
| 159 |
+
side_effects: false
|
| 160 |
+
example: "google drive list --folder root --type document"
|
| 161 |
+
|
| 162 |
+
- name: drive search
|
| 163 |
+
description: Search for files in Google Drive
|
| 164 |
+
args:
|
| 165 |
+
- name: query
|
| 166 |
+
type: string
|
| 167 |
+
required: true
|
| 168 |
+
description: Search query string
|
| 169 |
+
- name: type
|
| 170 |
+
type: enum
|
| 171 |
+
required: false
|
| 172 |
+
description: Filter by file type
|
| 173 |
+
values: ["document", "spreadsheet", "presentation", "folder", "pdf", "image"]
|
| 174 |
+
- name: limit
|
| 175 |
+
type: int
|
| 176 |
+
required: false
|
| 177 |
+
description: Maximum number of results
|
| 178 |
+
output_format: json
|
| 179 |
+
side_effects: false
|
| 180 |
+
example: "google drive search --query 'quarterly report' --type spreadsheet"
|
tool_adapters/jira.yaml
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: jira-cli
|
| 2 |
+
description: Jira CLI for managing issues, projects, and search in Atlassian Jira
|
| 3 |
+
binary: jira
|
| 4 |
+
auth:
|
| 5 |
+
type: token
|
| 6 |
+
key: JIRA_API_TOKEN
|
| 7 |
+
commands:
|
| 8 |
+
- name: issue list
|
| 9 |
+
description: List issues in a project with optional filtering
|
| 10 |
+
args:
|
| 11 |
+
- name: project
|
| 12 |
+
type: string
|
| 13 |
+
required: true
|
| 14 |
+
description: Project key (e.g. PROJ)
|
| 15 |
+
- name: status
|
| 16 |
+
type: enum
|
| 17 |
+
required: false
|
| 18 |
+
description: Filter by issue status
|
| 19 |
+
values: ["To Do", "In Progress", "In Review", "Done"]
|
| 20 |
+
- name: assignee
|
| 21 |
+
type: string
|
| 22 |
+
required: false
|
| 23 |
+
description: Filter by assignee username
|
| 24 |
+
- name: type
|
| 25 |
+
type: enum
|
| 26 |
+
required: false
|
| 27 |
+
description: Filter by issue type
|
| 28 |
+
values: ["Bug", "Story", "Task", "Epic", "Sub-task"]
|
| 29 |
+
- name: limit
|
| 30 |
+
type: int
|
| 31 |
+
required: false
|
| 32 |
+
description: Maximum number of issues to return
|
| 33 |
+
output_format: json
|
| 34 |
+
side_effects: false
|
| 35 |
+
example: "jira issue list --project PROJ --status 'In Progress' --assignee alice"
|
| 36 |
+
|
| 37 |
+
- name: issue create
|
| 38 |
+
description: Create a new issue in a project
|
| 39 |
+
args:
|
| 40 |
+
- name: project
|
| 41 |
+
type: string
|
| 42 |
+
required: true
|
| 43 |
+
description: Project key
|
| 44 |
+
- name: title
|
| 45 |
+
type: string
|
| 46 |
+
required: true
|
| 47 |
+
description: Issue summary/title
|
| 48 |
+
- name: type
|
| 49 |
+
type: enum
|
| 50 |
+
required: true
|
| 51 |
+
description: Issue type
|
| 52 |
+
values: ["Bug", "Story", "Task", "Epic", "Sub-task"]
|
| 53 |
+
- name: description
|
| 54 |
+
type: string
|
| 55 |
+
required: false
|
| 56 |
+
description: Issue description
|
| 57 |
+
- name: assignee
|
| 58 |
+
type: string
|
| 59 |
+
required: false
|
| 60 |
+
description: Username to assign
|
| 61 |
+
- name: priority
|
| 62 |
+
type: enum
|
| 63 |
+
required: false
|
| 64 |
+
description: Issue priority
|
| 65 |
+
values: ["Highest", "High", "Medium", "Low", "Lowest"]
|
| 66 |
+
- name: labels
|
| 67 |
+
type: string
|
| 68 |
+
required: false
|
| 69 |
+
description: Comma-separated labels
|
| 70 |
+
output_format: json
|
| 71 |
+
side_effects: true
|
| 72 |
+
example: "jira issue create --project PROJ --title 'Fix login' --type Bug --priority High"
|
| 73 |
+
|
| 74 |
+
- name: issue update
|
| 75 |
+
description: Update fields on an existing issue
|
| 76 |
+
args:
|
| 77 |
+
- name: key
|
| 78 |
+
type: string
|
| 79 |
+
required: true
|
| 80 |
+
description: Issue key (e.g. PROJ-42)
|
| 81 |
+
- name: status
|
| 82 |
+
type: enum
|
| 83 |
+
required: false
|
| 84 |
+
description: Transition to new status
|
| 85 |
+
values: ["To Do", "In Progress", "In Review", "Done"]
|
| 86 |
+
- name: assignee
|
| 87 |
+
type: string
|
| 88 |
+
required: false
|
| 89 |
+
description: New assignee username
|
| 90 |
+
- name: priority
|
| 91 |
+
type: enum
|
| 92 |
+
required: false
|
| 93 |
+
description: New priority
|
| 94 |
+
values: ["Highest", "High", "Medium", "Low", "Lowest"]
|
| 95 |
+
- name: title
|
| 96 |
+
type: string
|
| 97 |
+
required: false
|
| 98 |
+
description: New summary/title
|
| 99 |
+
output_format: json
|
| 100 |
+
side_effects: true
|
| 101 |
+
example: "jira issue update --key PROJ-42 --status 'In Progress' --assignee bob"
|
| 102 |
+
|
| 103 |
+
- name: issue view
|
| 104 |
+
description: View a single issue by key
|
| 105 |
+
args:
|
| 106 |
+
- name: key
|
| 107 |
+
type: string
|
| 108 |
+
required: true
|
| 109 |
+
description: Issue key (e.g. PROJ-42)
|
| 110 |
+
output_format: json
|
| 111 |
+
side_effects: false
|
| 112 |
+
example: "jira issue view --key PROJ-42"
|
| 113 |
+
|
| 114 |
+
- name: project list
|
| 115 |
+
description: List all projects accessible to the current user
|
| 116 |
+
args: []
|
| 117 |
+
output_format: json
|
| 118 |
+
side_effects: false
|
| 119 |
+
example: "jira project list"
|
| 120 |
+
|
| 121 |
+
- name: search
|
| 122 |
+
description: Search issues using JQL query
|
| 123 |
+
args:
|
| 124 |
+
- name: jql
|
| 125 |
+
type: string
|
| 126 |
+
required: true
|
| 127 |
+
description: JQL query string
|
| 128 |
+
- name: limit
|
| 129 |
+
type: int
|
| 130 |
+
required: false
|
| 131 |
+
description: Maximum number of results
|
| 132 |
+
output_format: json
|
| 133 |
+
side_effects: false
|
| 134 |
+
example: "jira search --jql 'project = PROJ AND status = \"In Progress\"' --limit 50"
|
tool_adapters/kforge.yaml
ADDED
|
@@ -0,0 +1,132 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: kforge
|
| 2 |
+
description: Artifact registry and build pipeline manager for managing container images, packages, and deployment pipelines
|
| 3 |
+
binary: kforge
|
| 4 |
+
auth:
|
| 5 |
+
type: env_var
|
| 6 |
+
key: KFORGE_API_TOKEN
|
| 7 |
+
commands:
|
| 8 |
+
- name: artifact list
|
| 9 |
+
description: List artifacts in a namespace with optional filtering by type and date
|
| 10 |
+
args:
|
| 11 |
+
- name: namespace
|
| 12 |
+
type: string
|
| 13 |
+
required: true
|
| 14 |
+
description: Artifact namespace (e.g. team-backend)
|
| 15 |
+
- name: type
|
| 16 |
+
type: enum
|
| 17 |
+
required: false
|
| 18 |
+
description: Filter by artifact type
|
| 19 |
+
values: ["docker", "npm", "pypi", "binary"]
|
| 20 |
+
- name: since
|
| 21 |
+
type: datetime
|
| 22 |
+
required: false
|
| 23 |
+
description: Only show artifacts published after this date (ISO 8601)
|
| 24 |
+
- name: limit
|
| 25 |
+
type: int
|
| 26 |
+
required: false
|
| 27 |
+
description: Maximum number of artifacts to return
|
| 28 |
+
output_format: json
|
| 29 |
+
side_effects: false
|
| 30 |
+
example: "kforge artifact list --namespace team-backend --type docker --since 2026-03-01T00:00:00Z"
|
| 31 |
+
|
| 32 |
+
- name: artifact inspect
|
| 33 |
+
description: Get detailed metadata for a specific artifact including layers, size, and build info
|
| 34 |
+
args:
|
| 35 |
+
- name: id
|
| 36 |
+
type: string
|
| 37 |
+
required: true
|
| 38 |
+
description: Artifact ID (e.g. art-a1b2c3)
|
| 39 |
+
output_format: json
|
| 40 |
+
side_effects: false
|
| 41 |
+
example: "kforge artifact inspect --id art-a1b2c3"
|
| 42 |
+
|
| 43 |
+
- name: pipeline trigger
|
| 44 |
+
description: Trigger a deployment pipeline for an artifact to a target environment
|
| 45 |
+
args:
|
| 46 |
+
- name: artifact
|
| 47 |
+
type: string
|
| 48 |
+
required: true
|
| 49 |
+
description: Artifact ID to deploy
|
| 50 |
+
- name: target
|
| 51 |
+
type: enum
|
| 52 |
+
required: true
|
| 53 |
+
description: Target deployment environment
|
| 54 |
+
values: ["staging", "production"]
|
| 55 |
+
- name: params
|
| 56 |
+
type: json
|
| 57 |
+
required: false
|
| 58 |
+
description: Pipeline parameters as JSON object
|
| 59 |
+
- name: dry-run
|
| 60 |
+
type: bool
|
| 61 |
+
required: false
|
| 62 |
+
description: Simulate the pipeline without executing
|
| 63 |
+
output_format: json
|
| 64 |
+
side_effects: true
|
| 65 |
+
example: "kforge pipeline trigger --artifact art-a1b2c3 --target staging --params '{\"replicas\": 3}'"
|
| 66 |
+
|
| 67 |
+
- name: pipeline status
|
| 68 |
+
description: Check the status of a running or completed pipeline execution
|
| 69 |
+
args:
|
| 70 |
+
- name: id
|
| 71 |
+
type: string
|
| 72 |
+
required: true
|
| 73 |
+
description: Pipeline execution ID (e.g. pipe-x1y2z3)
|
| 74 |
+
output_format: json
|
| 75 |
+
side_effects: false
|
| 76 |
+
example: "kforge pipeline status --id pipe-x1y2z3"
|
| 77 |
+
|
| 78 |
+
- name: registry create
|
| 79 |
+
description: Create a new artifact namespace/registry
|
| 80 |
+
args:
|
| 81 |
+
- name: namespace
|
| 82 |
+
type: string
|
| 83 |
+
required: true
|
| 84 |
+
description: Namespace name (must be unique, lowercase with hyphens)
|
| 85 |
+
- name: description
|
| 86 |
+
type: string
|
| 87 |
+
required: true
|
| 88 |
+
description: Human-readable description of the registry
|
| 89 |
+
- name: visibility
|
| 90 |
+
type: enum
|
| 91 |
+
required: false
|
| 92 |
+
description: Registry visibility
|
| 93 |
+
values: ["private", "internal", "public"]
|
| 94 |
+
output_format: json
|
| 95 |
+
side_effects: true
|
| 96 |
+
example: "kforge registry create --namespace ml-models --description 'ML model artifacts' --visibility internal"
|
| 97 |
+
|
| 98 |
+
- name: artifact promote
|
| 99 |
+
description: Promote an artifact from one environment to another
|
| 100 |
+
args:
|
| 101 |
+
- name: id
|
| 102 |
+
type: string
|
| 103 |
+
required: true
|
| 104 |
+
description: Artifact ID to promote
|
| 105 |
+
- name: from
|
| 106 |
+
type: enum
|
| 107 |
+
required: true
|
| 108 |
+
description: Source environment
|
| 109 |
+
values: ["staging", "production"]
|
| 110 |
+
- name: to
|
| 111 |
+
type: enum
|
| 112 |
+
required: true
|
| 113 |
+
description: Destination environment
|
| 114 |
+
values: ["staging", "production"]
|
| 115 |
+
output_format: json
|
| 116 |
+
side_effects: true
|
| 117 |
+
example: "kforge artifact promote --id art-a1b2c3 --from staging --to production"
|
| 118 |
+
|
| 119 |
+
- name: artifact delete
|
| 120 |
+
description: Delete an artifact by ID (cannot delete promoted artifacts)
|
| 121 |
+
args:
|
| 122 |
+
- name: id
|
| 123 |
+
type: string
|
| 124 |
+
required: true
|
| 125 |
+
description: Artifact ID
|
| 126 |
+
- name: force
|
| 127 |
+
type: bool
|
| 128 |
+
required: false
|
| 129 |
+
description: Force deletion even if artifact has active deployments
|
| 130 |
+
output_format: json
|
| 131 |
+
side_effects: true
|
| 132 |
+
example: "kforge artifact delete --id art-a1b2c3"
|
tool_adapters/linear.yaml
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: linear-cli
|
| 2 |
+
description: Linear CLI for managing issues, projects, and teams in Linear project management
|
| 3 |
+
binary: linear
|
| 4 |
+
auth:
|
| 5 |
+
type: env_var
|
| 6 |
+
key: LINEAR_API_KEY
|
| 7 |
+
commands:
|
| 8 |
+
- name: issue list
|
| 9 |
+
description: List issues with optional filtering by project, assignee, or status
|
| 10 |
+
args:
|
| 11 |
+
- name: project
|
| 12 |
+
type: string
|
| 13 |
+
required: false
|
| 14 |
+
description: Filter by project name
|
| 15 |
+
- name: assignee
|
| 16 |
+
type: string
|
| 17 |
+
required: false
|
| 18 |
+
description: Filter by assignee username
|
| 19 |
+
- name: status
|
| 20 |
+
type: enum
|
| 21 |
+
required: false
|
| 22 |
+
description: Filter by issue status
|
| 23 |
+
values: ["Todo", "In Progress", "Done", "Cancelled"]
|
| 24 |
+
output_format: json
|
| 25 |
+
side_effects: false
|
| 26 |
+
example: "linear issue list --project Backend --status 'In Progress'"
|
| 27 |
+
|
| 28 |
+
- name: issue get
|
| 29 |
+
description: Get a single issue by ID
|
| 30 |
+
args:
|
| 31 |
+
- name: id
|
| 32 |
+
type: string
|
| 33 |
+
required: true
|
| 34 |
+
description: Issue identifier (e.g. ISS-42)
|
| 35 |
+
output_format: json
|
| 36 |
+
side_effects: false
|
| 37 |
+
example: "linear issue get --id ISS-42"
|
| 38 |
+
|
| 39 |
+
- name: issue create
|
| 40 |
+
description: Create a new issue
|
| 41 |
+
args:
|
| 42 |
+
- name: title
|
| 43 |
+
type: string
|
| 44 |
+
required: true
|
| 45 |
+
description: Issue title
|
| 46 |
+
- name: description
|
| 47 |
+
type: string
|
| 48 |
+
required: false
|
| 49 |
+
description: Issue description
|
| 50 |
+
- name: assignee
|
| 51 |
+
type: string
|
| 52 |
+
required: false
|
| 53 |
+
description: Username to assign
|
| 54 |
+
- name: project
|
| 55 |
+
type: string
|
| 56 |
+
required: false
|
| 57 |
+
description: Project to associate with
|
| 58 |
+
- name: priority
|
| 59 |
+
type: int
|
| 60 |
+
required: false
|
| 61 |
+
description: Priority level (0=none, 1=urgent, 2=high, 3=medium, 4=low)
|
| 62 |
+
- name: label
|
| 63 |
+
type: string
|
| 64 |
+
required: false
|
| 65 |
+
description: Label to apply (can be repeated)
|
| 66 |
+
output_format: json
|
| 67 |
+
side_effects: true
|
| 68 |
+
example: "linear issue create --title 'Fix login bug' --assignee alice --priority 1 --label bug"
|
| 69 |
+
|
| 70 |
+
- name: issue update
|
| 71 |
+
description: Update fields on an existing issue
|
| 72 |
+
args:
|
| 73 |
+
- name: id
|
| 74 |
+
type: string
|
| 75 |
+
required: true
|
| 76 |
+
description: Issue identifier
|
| 77 |
+
- name: assignee
|
| 78 |
+
type: string
|
| 79 |
+
required: false
|
| 80 |
+
description: New assignee username
|
| 81 |
+
- name: status
|
| 82 |
+
type: enum
|
| 83 |
+
required: false
|
| 84 |
+
description: New status
|
| 85 |
+
values: ["Todo", "In Progress", "Done", "Cancelled"]
|
| 86 |
+
- name: priority
|
| 87 |
+
type: int
|
| 88 |
+
required: false
|
| 89 |
+
description: New priority level
|
| 90 |
+
- name: title
|
| 91 |
+
type: string
|
| 92 |
+
required: false
|
| 93 |
+
description: New title
|
| 94 |
+
output_format: json
|
| 95 |
+
side_effects: true
|
| 96 |
+
example: "linear issue update --id ISS-42 --status 'In Progress' --assignee bob"
|
| 97 |
+
|
| 98 |
+
- name: issue comment
|
| 99 |
+
description: Add a comment to an issue
|
| 100 |
+
args:
|
| 101 |
+
- name: id
|
| 102 |
+
type: string
|
| 103 |
+
required: true
|
| 104 |
+
description: Issue identifier
|
| 105 |
+
- name: body
|
| 106 |
+
type: string
|
| 107 |
+
required: true
|
| 108 |
+
description: Comment text
|
| 109 |
+
- name: author
|
| 110 |
+
type: string
|
| 111 |
+
required: false
|
| 112 |
+
description: Comment author (defaults to current user)
|
| 113 |
+
output_format: json
|
| 114 |
+
side_effects: true
|
| 115 |
+
example: "linear issue comment --id ISS-42 --body 'Working on this now'"
|
| 116 |
+
|
| 117 |
+
- name: project list
|
| 118 |
+
description: List all projects
|
| 119 |
+
args: []
|
| 120 |
+
output_format: json
|
| 121 |
+
side_effects: false
|
| 122 |
+
example: "linear project list"
|
| 123 |
+
|
| 124 |
+
- name: team list
|
| 125 |
+
description: List all teams with members
|
| 126 |
+
args: []
|
| 127 |
+
output_format: json
|
| 128 |
+
side_effects: false
|
| 129 |
+
example: "linear team list"
|
tool_adapters/meshctl.yaml
ADDED
|
@@ -0,0 +1,140 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: meshctl
|
| 2 |
+
description: Service mesh configuration manager for routing, traffic policies, and observability across microservices
|
| 3 |
+
binary: meshctl
|
| 4 |
+
auth:
|
| 5 |
+
type: env_var
|
| 6 |
+
key: MESHCTL_TOKEN
|
| 7 |
+
commands:
|
| 8 |
+
- name: service list
|
| 9 |
+
description: List all registered services with health status
|
| 10 |
+
args:
|
| 11 |
+
- name: namespace
|
| 12 |
+
type: string
|
| 13 |
+
required: false
|
| 14 |
+
description: Filter by namespace
|
| 15 |
+
- name: status
|
| 16 |
+
type: enum
|
| 17 |
+
required: false
|
| 18 |
+
description: Filter by health status
|
| 19 |
+
values: ["healthy", "degraded", "unhealthy"]
|
| 20 |
+
output_format: json
|
| 21 |
+
side_effects: false
|
| 22 |
+
example: "meshctl service list --namespace production --status healthy"
|
| 23 |
+
|
| 24 |
+
- name: service route
|
| 25 |
+
description: Create or update a routing rule between two services
|
| 26 |
+
args:
|
| 27 |
+
- name: from
|
| 28 |
+
type: string
|
| 29 |
+
required: true
|
| 30 |
+
description: Source service name
|
| 31 |
+
- name: to
|
| 32 |
+
type: string
|
| 33 |
+
required: true
|
| 34 |
+
description: Destination service name
|
| 35 |
+
- name: weight
|
| 36 |
+
type: int
|
| 37 |
+
required: true
|
| 38 |
+
description: Traffic weight percentage (0-100)
|
| 39 |
+
- name: match-headers
|
| 40 |
+
type: json
|
| 41 |
+
required: false
|
| 42 |
+
description: Header matching rules as JSON object
|
| 43 |
+
output_format: json
|
| 44 |
+
side_effects: true
|
| 45 |
+
example: "meshctl service route --from api-gateway --to user-service --weight 80"
|
| 46 |
+
|
| 47 |
+
- name: policy create
|
| 48 |
+
description: Create a traffic policy (rate limit, circuit breaker, or retry)
|
| 49 |
+
args:
|
| 50 |
+
- name: name
|
| 51 |
+
type: string
|
| 52 |
+
required: true
|
| 53 |
+
description: Policy name (unique identifier)
|
| 54 |
+
- name: type
|
| 55 |
+
type: enum
|
| 56 |
+
required: true
|
| 57 |
+
description: Policy type
|
| 58 |
+
values: ["rate_limit", "circuit_breaker", "retry"]
|
| 59 |
+
- name: config
|
| 60 |
+
type: json
|
| 61 |
+
required: true
|
| 62 |
+
description: "Policy configuration as JSON (e.g. {\"max_requests\": 100, \"window_seconds\": 60})"
|
| 63 |
+
output_format: json
|
| 64 |
+
side_effects: true
|
| 65 |
+
example: "meshctl policy create --name api-rate-limit --type rate_limit --config '{\"max_requests\": 1000, \"window_seconds\": 60}'"
|
| 66 |
+
|
| 67 |
+
- name: policy apply
|
| 68 |
+
description: Apply an existing policy to a service
|
| 69 |
+
args:
|
| 70 |
+
- name: name
|
| 71 |
+
type: string
|
| 72 |
+
required: true
|
| 73 |
+
description: Policy name to apply
|
| 74 |
+
- name: service
|
| 75 |
+
type: string
|
| 76 |
+
required: true
|
| 77 |
+
description: Target service name
|
| 78 |
+
output_format: json
|
| 79 |
+
side_effects: true
|
| 80 |
+
example: "meshctl policy apply --name api-rate-limit --service user-service"
|
| 81 |
+
|
| 82 |
+
- name: traffic split
|
| 83 |
+
description: Configure traffic splitting across service versions for canary or blue-green deployments
|
| 84 |
+
args:
|
| 85 |
+
- name: service
|
| 86 |
+
type: string
|
| 87 |
+
required: true
|
| 88 |
+
description: Service name to split traffic for
|
| 89 |
+
- name: versions
|
| 90 |
+
type: json
|
| 91 |
+
required: true
|
| 92 |
+
description: "Version-to-weight mapping as JSON (e.g. {\"v1\": 90, \"v2\": 10})"
|
| 93 |
+
output_format: json
|
| 94 |
+
side_effects: true
|
| 95 |
+
example: "meshctl traffic split --service user-service --versions '{\"v1\": 90, \"v2\": 10}'"
|
| 96 |
+
|
| 97 |
+
- name: observe metrics
|
| 98 |
+
description: Get real-time traffic metrics for a service
|
| 99 |
+
args:
|
| 100 |
+
- name: service
|
| 101 |
+
type: string
|
| 102 |
+
required: true
|
| 103 |
+
description: Service name to observe
|
| 104 |
+
- name: window
|
| 105 |
+
type: enum
|
| 106 |
+
required: false
|
| 107 |
+
description: Time window for metrics aggregation
|
| 108 |
+
values: ["5m", "15m", "1h", "6h", "24h"]
|
| 109 |
+
- name: metric
|
| 110 |
+
type: enum
|
| 111 |
+
required: false
|
| 112 |
+
description: Specific metric to query
|
| 113 |
+
values: ["latency", "throughput", "error_rate", "saturation"]
|
| 114 |
+
output_format: json
|
| 115 |
+
side_effects: false
|
| 116 |
+
example: "meshctl observe metrics --service user-service --window 15m --metric latency"
|
| 117 |
+
|
| 118 |
+
- name: service register
|
| 119 |
+
description: Register a new service in the mesh
|
| 120 |
+
args:
|
| 121 |
+
- name: name
|
| 122 |
+
type: string
|
| 123 |
+
required: true
|
| 124 |
+
description: Service name
|
| 125 |
+
- name: namespace
|
| 126 |
+
type: string
|
| 127 |
+
required: true
|
| 128 |
+
description: Namespace to register in
|
| 129 |
+
- name: port
|
| 130 |
+
type: int
|
| 131 |
+
required: true
|
| 132 |
+
description: Service port number
|
| 133 |
+
- name: protocol
|
| 134 |
+
type: enum
|
| 135 |
+
required: false
|
| 136 |
+
description: Communication protocol
|
| 137 |
+
values: ["http", "grpc", "tcp"]
|
| 138 |
+
output_format: json
|
| 139 |
+
side_effects: true
|
| 140 |
+
example: "meshctl service register --name payment-svc --namespace production --port 8080 --protocol grpc"
|
tool_adapters/microsoft.yaml
ADDED
|
@@ -0,0 +1,162 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: microsoft-365-cli
|
| 2 |
+
description: Microsoft 365 CLI for Outlook mail, Calendar, OneDrive, and Teams operations
|
| 3 |
+
binary: m365
|
| 4 |
+
auth:
|
| 5 |
+
type: oauth
|
| 6 |
+
key: MS365_OAUTH_CREDENTIALS
|
| 7 |
+
commands:
|
| 8 |
+
- name: mail send
|
| 9 |
+
description: Send an email via Outlook
|
| 10 |
+
args:
|
| 11 |
+
- name: to
|
| 12 |
+
type: string
|
| 13 |
+
required: true
|
| 14 |
+
description: Recipient email address
|
| 15 |
+
- name: subject
|
| 16 |
+
type: string
|
| 17 |
+
required: true
|
| 18 |
+
description: Email subject line
|
| 19 |
+
- name: body
|
| 20 |
+
type: string
|
| 21 |
+
required: true
|
| 22 |
+
description: Email body text
|
| 23 |
+
- name: cc
|
| 24 |
+
type: string
|
| 25 |
+
required: false
|
| 26 |
+
description: CC recipients (comma-separated)
|
| 27 |
+
- name: importance
|
| 28 |
+
type: enum
|
| 29 |
+
required: false
|
| 30 |
+
description: Email importance level
|
| 31 |
+
values: ["low", "normal", "high"]
|
| 32 |
+
output_format: json
|
| 33 |
+
side_effects: true
|
| 34 |
+
example: "m365 mail send --to alice@contoso.com --subject 'Update' --body 'Project status' --importance high"
|
| 35 |
+
|
| 36 |
+
- name: mail list
|
| 37 |
+
description: List recent emails in the mailbox
|
| 38 |
+
args:
|
| 39 |
+
- name: folder
|
| 40 |
+
type: enum
|
| 41 |
+
required: false
|
| 42 |
+
description: Mail folder to list
|
| 43 |
+
values: ["inbox", "sent", "drafts", "archive"]
|
| 44 |
+
- name: limit
|
| 45 |
+
type: int
|
| 46 |
+
required: false
|
| 47 |
+
description: Maximum number of emails to return
|
| 48 |
+
- name: unread
|
| 49 |
+
type: bool
|
| 50 |
+
required: false
|
| 51 |
+
description: Only show unread messages
|
| 52 |
+
output_format: json
|
| 53 |
+
side_effects: false
|
| 54 |
+
example: "m365 mail list --folder inbox --limit 20 --unread"
|
| 55 |
+
|
| 56 |
+
- name: calendar event create
|
| 57 |
+
description: Create a new calendar event in Outlook
|
| 58 |
+
args:
|
| 59 |
+
- name: subject
|
| 60 |
+
type: string
|
| 61 |
+
required: true
|
| 62 |
+
description: Event subject/title
|
| 63 |
+
- name: start
|
| 64 |
+
type: datetime
|
| 65 |
+
required: true
|
| 66 |
+
description: Event start datetime (ISO 8601)
|
| 67 |
+
- name: end
|
| 68 |
+
type: datetime
|
| 69 |
+
required: true
|
| 70 |
+
description: Event end datetime (ISO 8601)
|
| 71 |
+
- name: body
|
| 72 |
+
type: string
|
| 73 |
+
required: false
|
| 74 |
+
description: Event description
|
| 75 |
+
- name: attendees
|
| 76 |
+
type: string
|
| 77 |
+
required: false
|
| 78 |
+
description: Comma-separated email addresses of attendees
|
| 79 |
+
- name: location
|
| 80 |
+
type: string
|
| 81 |
+
required: false
|
| 82 |
+
description: Event location
|
| 83 |
+
- name: is-online
|
| 84 |
+
type: bool
|
| 85 |
+
required: false
|
| 86 |
+
description: Whether this is an online meeting
|
| 87 |
+
output_format: json
|
| 88 |
+
side_effects: true
|
| 89 |
+
example: "m365 calendar event create --subject 'Sprint Planning' --start 2026-03-15T14:00:00Z --end 2026-03-15T15:00:00Z --attendees team@contoso.com --is-online"
|
| 90 |
+
|
| 91 |
+
- name: calendar event list
|
| 92 |
+
description: List calendar events with optional date range
|
| 93 |
+
args:
|
| 94 |
+
- name: start
|
| 95 |
+
type: datetime
|
| 96 |
+
required: false
|
| 97 |
+
description: Start datetime filter (ISO 8601)
|
| 98 |
+
- name: end
|
| 99 |
+
type: datetime
|
| 100 |
+
required: false
|
| 101 |
+
description: End datetime filter (ISO 8601)
|
| 102 |
+
- name: limit
|
| 103 |
+
type: int
|
| 104 |
+
required: false
|
| 105 |
+
description: Maximum number of events to return
|
| 106 |
+
output_format: json
|
| 107 |
+
side_effects: false
|
| 108 |
+
example: "m365 calendar event list --start 2026-03-01T00:00:00Z --end 2026-03-31T23:59:59Z"
|
| 109 |
+
|
| 110 |
+
- name: onedrive list
|
| 111 |
+
description: List files and folders in OneDrive
|
| 112 |
+
args:
|
| 113 |
+
- name: folder
|
| 114 |
+
type: string
|
| 115 |
+
required: false
|
| 116 |
+
description: Folder path to list (defaults to root)
|
| 117 |
+
- name: type
|
| 118 |
+
type: enum
|
| 119 |
+
required: false
|
| 120 |
+
description: Filter by item type
|
| 121 |
+
values: ["file", "folder"]
|
| 122 |
+
- name: limit
|
| 123 |
+
type: int
|
| 124 |
+
required: false
|
| 125 |
+
description: Maximum number of items to return
|
| 126 |
+
output_format: json
|
| 127 |
+
side_effects: false
|
| 128 |
+
example: "m365 onedrive list --folder /Documents --type file"
|
| 129 |
+
|
| 130 |
+
- name: onedrive search
|
| 131 |
+
description: Search for files in OneDrive
|
| 132 |
+
args:
|
| 133 |
+
- name: query
|
| 134 |
+
type: string
|
| 135 |
+
required: true
|
| 136 |
+
description: Search query string
|
| 137 |
+
- name: limit
|
| 138 |
+
type: int
|
| 139 |
+
required: false
|
| 140 |
+
description: Maximum number of results
|
| 141 |
+
output_format: json
|
| 142 |
+
side_effects: false
|
| 143 |
+
example: "m365 onedrive search --query 'quarterly report'"
|
| 144 |
+
|
| 145 |
+
- name: teams message send
|
| 146 |
+
description: Send a message to a Teams channel
|
| 147 |
+
args:
|
| 148 |
+
- name: team
|
| 149 |
+
type: string
|
| 150 |
+
required: true
|
| 151 |
+
description: Team name or ID
|
| 152 |
+
- name: channel
|
| 153 |
+
type: string
|
| 154 |
+
required: true
|
| 155 |
+
description: Channel name
|
| 156 |
+
- name: message
|
| 157 |
+
type: string
|
| 158 |
+
required: true
|
| 159 |
+
description: Message text content
|
| 160 |
+
output_format: json
|
| 161 |
+
side_effects: true
|
| 162 |
+
example: "m365 teams message send --team Engineering --channel general --message 'Deploy complete'"
|
tool_adapters/notion.yaml
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: notion-cli
|
| 2 |
+
description: Notion CLI for managing pages, databases, blocks, and search
|
| 3 |
+
binary: notion
|
| 4 |
+
auth:
|
| 5 |
+
type: env_var
|
| 6 |
+
key: NOTION_API_KEY
|
| 7 |
+
commands:
|
| 8 |
+
- name: page list
|
| 9 |
+
description: List pages with optional filtering by parent page or database
|
| 10 |
+
args:
|
| 11 |
+
- name: parent
|
| 12 |
+
type: string
|
| 13 |
+
required: false
|
| 14 |
+
description: Parent page or database ID to filter by
|
| 15 |
+
- name: limit
|
| 16 |
+
type: int
|
| 17 |
+
required: false
|
| 18 |
+
description: Maximum number of pages to return
|
| 19 |
+
output_format: json
|
| 20 |
+
side_effects: false
|
| 21 |
+
example: "notion page list --parent db-001 --limit 20"
|
| 22 |
+
|
| 23 |
+
- name: page create
|
| 24 |
+
description: Create a new page under a parent page or database
|
| 25 |
+
args:
|
| 26 |
+
- name: title
|
| 27 |
+
type: string
|
| 28 |
+
required: true
|
| 29 |
+
description: Page title
|
| 30 |
+
- name: parent
|
| 31 |
+
type: string
|
| 32 |
+
required: true
|
| 33 |
+
description: Parent page or database ID
|
| 34 |
+
- name: content
|
| 35 |
+
type: string
|
| 36 |
+
required: false
|
| 37 |
+
description: Initial page content as plain text
|
| 38 |
+
- name: icon
|
| 39 |
+
type: string
|
| 40 |
+
required: false
|
| 41 |
+
description: Page icon emoji
|
| 42 |
+
output_format: json
|
| 43 |
+
side_effects: true
|
| 44 |
+
example: "notion page create --title 'Meeting Notes' --parent db-001 --content 'Discussion items'"
|
| 45 |
+
|
| 46 |
+
- name: page update
|
| 47 |
+
description: Update an existing page title or content
|
| 48 |
+
args:
|
| 49 |
+
- name: id
|
| 50 |
+
type: string
|
| 51 |
+
required: true
|
| 52 |
+
description: Page ID
|
| 53 |
+
- name: title
|
| 54 |
+
type: string
|
| 55 |
+
required: false
|
| 56 |
+
description: New page title
|
| 57 |
+
- name: content
|
| 58 |
+
type: string
|
| 59 |
+
required: false
|
| 60 |
+
description: New page content
|
| 61 |
+
- name: archived
|
| 62 |
+
type: bool
|
| 63 |
+
required: false
|
| 64 |
+
description: Archive or unarchive the page
|
| 65 |
+
output_format: json
|
| 66 |
+
side_effects: true
|
| 67 |
+
example: "notion page update --id page-001 --title 'Updated Title'"
|
| 68 |
+
|
| 69 |
+
- name: db query
|
| 70 |
+
description: Query a database with optional filter and sort
|
| 71 |
+
args:
|
| 72 |
+
- name: id
|
| 73 |
+
type: string
|
| 74 |
+
required: true
|
| 75 |
+
description: Database ID
|
| 76 |
+
- name: filter
|
| 77 |
+
type: json
|
| 78 |
+
required: false
|
| 79 |
+
description: Filter object as JSON
|
| 80 |
+
- name: sort
|
| 81 |
+
type: string
|
| 82 |
+
required: false
|
| 83 |
+
description: Property name to sort by
|
| 84 |
+
- name: limit
|
| 85 |
+
type: int
|
| 86 |
+
required: false
|
| 87 |
+
description: Maximum number of results
|
| 88 |
+
output_format: json
|
| 89 |
+
side_effects: false
|
| 90 |
+
example: "notion db query --id db-001 --filter '{\"status\": \"active\"}'"
|
| 91 |
+
|
| 92 |
+
- name: block append
|
| 93 |
+
description: Append content blocks to a page
|
| 94 |
+
args:
|
| 95 |
+
- name: page-id
|
| 96 |
+
type: string
|
| 97 |
+
required: true
|
| 98 |
+
description: Page ID to append blocks to
|
| 99 |
+
- name: content
|
| 100 |
+
type: string
|
| 101 |
+
required: true
|
| 102 |
+
description: Text content to append as a paragraph block
|
| 103 |
+
- name: type
|
| 104 |
+
type: enum
|
| 105 |
+
required: false
|
| 106 |
+
description: Block type
|
| 107 |
+
values: ["paragraph", "heading_1", "heading_2", "heading_3", "bulleted_list", "numbered_list", "code"]
|
| 108 |
+
output_format: json
|
| 109 |
+
side_effects: true
|
| 110 |
+
example: "notion block append --page-id page-001 --content 'New paragraph' --type paragraph"
|
| 111 |
+
|
| 112 |
+
- name: search
|
| 113 |
+
description: Search across all pages and databases by text query
|
| 114 |
+
args:
|
| 115 |
+
- name: query
|
| 116 |
+
type: string
|
| 117 |
+
required: true
|
| 118 |
+
description: Search query string
|
| 119 |
+
- name: type
|
| 120 |
+
type: enum
|
| 121 |
+
required: false
|
| 122 |
+
description: Filter results by object type
|
| 123 |
+
values: ["page", "database"]
|
| 124 |
+
- name: limit
|
| 125 |
+
type: int
|
| 126 |
+
required: false
|
| 127 |
+
description: Maximum number of results
|
| 128 |
+
output_format: json
|
| 129 |
+
side_effects: false
|
| 130 |
+
example: "notion search --query 'meeting notes' --type page"
|
| 131 |
+
|
| 132 |
+
- name: page get
|
| 133 |
+
description: Get a single page by ID with its content
|
| 134 |
+
args:
|
| 135 |
+
- name: id
|
| 136 |
+
type: string
|
| 137 |
+
required: true
|
| 138 |
+
description: Page ID
|
| 139 |
+
output_format: json
|
| 140 |
+
side_effects: false
|
| 141 |
+
example: "notion page get --id page-001"
|
tool_adapters/slack.yaml
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: slack-cli
|
| 2 |
+
description: Slack CLI for managing channels, messages, direct messages, and users
|
| 3 |
+
binary: slack
|
| 4 |
+
auth:
|
| 5 |
+
type: env_var
|
| 6 |
+
key: SLACK_TOKEN
|
| 7 |
+
commands:
|
| 8 |
+
- name: channel list
|
| 9 |
+
description: List all channels in the workspace with IDs and topics
|
| 10 |
+
args: []
|
| 11 |
+
output_format: json
|
| 12 |
+
side_effects: false
|
| 13 |
+
example: "slack channel list"
|
| 14 |
+
|
| 15 |
+
- name: channel info
|
| 16 |
+
description: Get detailed information about a specific channel
|
| 17 |
+
args:
|
| 18 |
+
- name: channel
|
| 19 |
+
type: string
|
| 20 |
+
required: true
|
| 21 |
+
description: Channel name
|
| 22 |
+
output_format: json
|
| 23 |
+
side_effects: false
|
| 24 |
+
example: "slack channel info --channel engineering"
|
| 25 |
+
|
| 26 |
+
- name: channel message
|
| 27 |
+
description: List messages in a channel with optional limit
|
| 28 |
+
args:
|
| 29 |
+
- name: channel
|
| 30 |
+
type: string
|
| 31 |
+
required: true
|
| 32 |
+
description: Channel name
|
| 33 |
+
- name: limit
|
| 34 |
+
type: int
|
| 35 |
+
required: false
|
| 36 |
+
description: Maximum number of messages to return
|
| 37 |
+
output_format: json
|
| 38 |
+
side_effects: false
|
| 39 |
+
example: "slack channel message --channel general --limit 10"
|
| 40 |
+
|
| 41 |
+
- name: message send
|
| 42 |
+
description: Post a message to a channel
|
| 43 |
+
args:
|
| 44 |
+
- name: channel
|
| 45 |
+
type: string
|
| 46 |
+
required: true
|
| 47 |
+
description: Channel name
|
| 48 |
+
- name: text
|
| 49 |
+
type: string
|
| 50 |
+
required: true
|
| 51 |
+
description: Message text content
|
| 52 |
+
output_format: json
|
| 53 |
+
side_effects: true
|
| 54 |
+
example: "slack message send --channel general --text 'Hello team!'"
|
| 55 |
+
|
| 56 |
+
- name: dm send
|
| 57 |
+
description: Send a direct message to a user
|
| 58 |
+
args:
|
| 59 |
+
- name: user
|
| 60 |
+
type: string
|
| 61 |
+
required: true
|
| 62 |
+
description: Username of the recipient
|
| 63 |
+
- name: text
|
| 64 |
+
type: string
|
| 65 |
+
required: true
|
| 66 |
+
description: Message text content
|
| 67 |
+
output_format: json
|
| 68 |
+
side_effects: true
|
| 69 |
+
example: "slack dm send --user alice --text 'Can you review my PR?'"
|
| 70 |
+
|
| 71 |
+
- name: search message
|
| 72 |
+
description: Search messages across all channels by keyword
|
| 73 |
+
args:
|
| 74 |
+
- name: query
|
| 75 |
+
type: string
|
| 76 |
+
required: true
|
| 77 |
+
description: Search query string
|
| 78 |
+
output_format: json
|
| 79 |
+
side_effects: false
|
| 80 |
+
example: "slack search message --query deployment"
|
| 81 |
+
|
| 82 |
+
- name: user list
|
| 83 |
+
description: List all users in the workspace
|
| 84 |
+
args: []
|
| 85 |
+
output_format: json
|
| 86 |
+
side_effects: false
|
| 87 |
+
example: "slack user list"
|