@useconductor/conductor 1.0.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/.claude-plugin/marketplace.json +33 -0
- package/.claude-plugin/plugin.json +23 -0
- package/.eslintrc.json +23 -0
- package/.gitattributes +6 -0
- package/.github/FUNDING.yml +15 -0
- package/.github/ISSUE_TEMPLATE/bug_report.yml +91 -0
- package/.github/ISSUE_TEMPLATE/config.yml +8 -0
- package/.github/ISSUE_TEMPLATE/feature_request.yml +63 -0
- package/.github/ISSUE_TEMPLATE/plugin_request.yml +71 -0
- package/.github/README.md +13 -0
- package/.github/workflows/README.md +22 -0
- package/.github/workflows/auto-release.yml +112 -0
- package/.github/workflows/ci.yml +49 -0
- package/.github/workflows/claude-code-review.yml +44 -0
- package/.github/workflows/claude.yml +36 -0
- package/.github/workflows/sync-install.yml +47 -0
- package/.mcp.json +9 -0
- package/.prettierrc.json +7 -0
- package/C.png +0 -0
- package/CHANGELOG.md +74 -0
- package/CLAUDE.md +118 -0
- package/CONTRIBUTING.md +231 -0
- package/LICENSE +201 -0
- package/README.md +179 -0
- package/SECURITY.md +47 -0
- package/commands/conductor-setup.md +11 -0
- package/commands/conductor-status.md +7 -0
- package/dist/ai/base.d.ts +44 -0
- package/dist/ai/base.d.ts.map +1 -0
- package/dist/ai/base.js +47 -0
- package/dist/ai/base.js.map +1 -0
- package/dist/ai/claude.d.ts +11 -0
- package/dist/ai/claude.d.ts.map +1 -0
- package/dist/ai/claude.js +149 -0
- package/dist/ai/claude.js.map +1 -0
- package/dist/ai/gemini.d.ts +15 -0
- package/dist/ai/gemini.d.ts.map +1 -0
- package/dist/ai/gemini.js +156 -0
- package/dist/ai/gemini.js.map +1 -0
- package/dist/ai/maestro.d.ts +22 -0
- package/dist/ai/maestro.d.ts.map +1 -0
- package/dist/ai/maestro.js +142 -0
- package/dist/ai/maestro.js.map +1 -0
- package/dist/ai/manager.d.ts +47 -0
- package/dist/ai/manager.d.ts.map +1 -0
- package/dist/ai/manager.js +450 -0
- package/dist/ai/manager.js.map +1 -0
- package/dist/ai/ollama.d.ts +16 -0
- package/dist/ai/ollama.d.ts.map +1 -0
- package/dist/ai/ollama.js +151 -0
- package/dist/ai/ollama.js.map +1 -0
- package/dist/ai/openai.d.ts +11 -0
- package/dist/ai/openai.d.ts.map +1 -0
- package/dist/ai/openai.js +132 -0
- package/dist/ai/openai.js.map +1 -0
- package/dist/ai/openrouter.d.ts +11 -0
- package/dist/ai/openrouter.d.ts.map +1 -0
- package/dist/ai/openrouter.js +139 -0
- package/dist/ai/openrouter.js.map +1 -0
- package/dist/bot/slack.d.ts +17 -0
- package/dist/bot/slack.d.ts.map +1 -0
- package/dist/bot/slack.js +144 -0
- package/dist/bot/slack.js.map +1 -0
- package/dist/bot/telegram.d.ts +19 -0
- package/dist/bot/telegram.d.ts.map +1 -0
- package/dist/bot/telegram.js +157 -0
- package/dist/bot/telegram.js.map +1 -0
- package/dist/cli/commands/ai.d.ts +4 -0
- package/dist/cli/commands/ai.d.ts.map +1 -0
- package/dist/cli/commands/ai.js +161 -0
- package/dist/cli/commands/ai.js.map +1 -0
- package/dist/cli/commands/doctor.d.ts +18 -0
- package/dist/cli/commands/doctor.d.ts.map +1 -0
- package/dist/cli/commands/doctor.js +213 -0
- package/dist/cli/commands/doctor.js.map +1 -0
- package/dist/cli/commands/init.d.ts +15 -0
- package/dist/cli/commands/init.d.ts.map +1 -0
- package/dist/cli/commands/init.js +281 -0
- package/dist/cli/commands/init.js.map +1 -0
- package/dist/cli/commands/install.d.ts +16 -0
- package/dist/cli/commands/install.d.ts.map +1 -0
- package/dist/cli/commands/install.js +750 -0
- package/dist/cli/commands/install.js.map +1 -0
- package/dist/cli/commands/lifecycle.d.ts +4 -0
- package/dist/cli/commands/lifecycle.d.ts.map +1 -0
- package/dist/cli/commands/lifecycle.js +84 -0
- package/dist/cli/commands/lifecycle.js.map +1 -0
- package/dist/cli/commands/marketplace.d.ts +13 -0
- package/dist/cli/commands/marketplace.d.ts.map +1 -0
- package/dist/cli/commands/marketplace.js +197 -0
- package/dist/cli/commands/marketplace.js.map +1 -0
- package/dist/cli/commands/mcp.d.ts +6 -0
- package/dist/cli/commands/mcp.d.ts.map +1 -0
- package/dist/cli/commands/mcp.js +83 -0
- package/dist/cli/commands/mcp.js.map +1 -0
- package/dist/cli/commands/onboard.d.ts +10 -0
- package/dist/cli/commands/onboard.d.ts.map +1 -0
- package/dist/cli/commands/onboard.js +207 -0
- package/dist/cli/commands/onboard.js.map +1 -0
- package/dist/cli/commands/plugin-create.d.ts +13 -0
- package/dist/cli/commands/plugin-create.d.ts.map +1 -0
- package/dist/cli/commands/plugin-create.js +122 -0
- package/dist/cli/commands/plugin-create.js.map +1 -0
- package/dist/cli/commands/plugins.d.ts +5 -0
- package/dist/cli/commands/plugins.d.ts.map +1 -0
- package/dist/cli/commands/plugins.js +30 -0
- package/dist/cli/commands/plugins.js.map +1 -0
- package/dist/cli/commands/release.d.ts +13 -0
- package/dist/cli/commands/release.d.ts.map +1 -0
- package/dist/cli/commands/release.js +243 -0
- package/dist/cli/commands/release.js.map +1 -0
- package/dist/cli/commands/telegram.d.ts +3 -0
- package/dist/cli/commands/telegram.d.ts.map +1 -0
- package/dist/cli/commands/telegram.js +20 -0
- package/dist/cli/commands/telegram.js.map +1 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +402 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/config/oauth.d.ts +8 -0
- package/dist/config/oauth.d.ts.map +1 -0
- package/dist/config/oauth.js +13 -0
- package/dist/config/oauth.js.map +1 -0
- package/dist/core/audit.d.ts +91 -0
- package/dist/core/audit.d.ts.map +1 -0
- package/dist/core/audit.js +233 -0
- package/dist/core/audit.js.map +1 -0
- package/dist/core/circuit-breaker.d.ts +56 -0
- package/dist/core/circuit-breaker.d.ts.map +1 -0
- package/dist/core/circuit-breaker.js +107 -0
- package/dist/core/circuit-breaker.js.map +1 -0
- package/dist/core/conductor.d.ts +44 -0
- package/dist/core/conductor.d.ts.map +1 -0
- package/dist/core/conductor.js +200 -0
- package/dist/core/conductor.js.map +1 -0
- package/dist/core/config.d.ts +66 -0
- package/dist/core/config.d.ts.map +1 -0
- package/dist/core/config.js +86 -0
- package/dist/core/config.js.map +1 -0
- package/dist/core/database.d.ts +59 -0
- package/dist/core/database.d.ts.map +1 -0
- package/dist/core/database.js +342 -0
- package/dist/core/database.js.map +1 -0
- package/dist/core/errors.d.ts +231 -0
- package/dist/core/errors.d.ts.map +1 -0
- package/dist/core/errors.js +254 -0
- package/dist/core/errors.js.map +1 -0
- package/dist/core/health.d.ts +72 -0
- package/dist/core/health.d.ts.map +1 -0
- package/dist/core/health.js +116 -0
- package/dist/core/health.js.map +1 -0
- package/dist/core/interfaces.d.ts +62 -0
- package/dist/core/interfaces.d.ts.map +1 -0
- package/dist/core/interfaces.js +8 -0
- package/dist/core/interfaces.js.map +1 -0
- package/dist/core/logger.d.ts +15 -0
- package/dist/core/logger.d.ts.map +1 -0
- package/dist/core/logger.js +30 -0
- package/dist/core/logger.js.map +1 -0
- package/dist/core/rbac.d.ts +132 -0
- package/dist/core/rbac.d.ts.map +1 -0
- package/dist/core/rbac.js +230 -0
- package/dist/core/rbac.js.map +1 -0
- package/dist/core/retry.d.ts +22 -0
- package/dist/core/retry.d.ts.map +1 -0
- package/dist/core/retry.js +41 -0
- package/dist/core/retry.js.map +1 -0
- package/dist/core/webhooks.d.ts +92 -0
- package/dist/core/webhooks.d.ts.map +1 -0
- package/dist/core/webhooks.js +176 -0
- package/dist/core/webhooks.js.map +1 -0
- package/dist/core/zero-config.d.ts +22 -0
- package/dist/core/zero-config.d.ts.map +1 -0
- package/dist/core/zero-config.js +59 -0
- package/dist/core/zero-config.js.map +1 -0
- package/dist/dashboard/cli.d.ts +6 -0
- package/dist/dashboard/cli.d.ts.map +1 -0
- package/dist/dashboard/cli.js +42 -0
- package/dist/dashboard/cli.js.map +1 -0
- package/dist/dashboard/index.html +3426 -0
- package/dist/dashboard/server.d.ts +7 -0
- package/dist/dashboard/server.d.ts.map +1 -0
- package/dist/dashboard/server.js +1427 -0
- package/dist/dashboard/server.js.map +1 -0
- package/dist/mcp/server.d.ts +27 -0
- package/dist/mcp/server.d.ts.map +1 -0
- package/dist/mcp/server.js +380 -0
- package/dist/mcp/server.js.map +1 -0
- package/dist/mcp/tools/misc.d.ts +15 -0
- package/dist/mcp/tools/misc.d.ts.map +1 -0
- package/dist/mcp/tools/misc.js +49 -0
- package/dist/mcp/tools/misc.js.map +1 -0
- package/dist/plugins/builtin/calculator.d.ts +11 -0
- package/dist/plugins/builtin/calculator.d.ts.map +1 -0
- package/dist/plugins/builtin/calculator.js +166 -0
- package/dist/plugins/builtin/calculator.js.map +1 -0
- package/dist/plugins/builtin/colors.d.ts +15 -0
- package/dist/plugins/builtin/colors.d.ts.map +1 -0
- package/dist/plugins/builtin/colors.js +193 -0
- package/dist/plugins/builtin/colors.js.map +1 -0
- package/dist/plugins/builtin/cron.d.ts +40 -0
- package/dist/plugins/builtin/cron.d.ts.map +1 -0
- package/dist/plugins/builtin/cron.js +578 -0
- package/dist/plugins/builtin/cron.js.map +1 -0
- package/dist/plugins/builtin/crypto.d.ts +11 -0
- package/dist/plugins/builtin/crypto.d.ts.map +1 -0
- package/dist/plugins/builtin/crypto.js +83 -0
- package/dist/plugins/builtin/crypto.js.map +1 -0
- package/dist/plugins/builtin/database.d.ts +29 -0
- package/dist/plugins/builtin/database.d.ts.map +1 -0
- package/dist/plugins/builtin/database.js +230 -0
- package/dist/plugins/builtin/database.js.map +1 -0
- package/dist/plugins/builtin/docker.d.ts +12 -0
- package/dist/plugins/builtin/docker.d.ts.map +1 -0
- package/dist/plugins/builtin/docker.js +436 -0
- package/dist/plugins/builtin/docker.js.map +1 -0
- package/dist/plugins/builtin/fun.d.ts +11 -0
- package/dist/plugins/builtin/fun.d.ts.map +1 -0
- package/dist/plugins/builtin/fun.js +114 -0
- package/dist/plugins/builtin/fun.js.map +1 -0
- package/dist/plugins/builtin/gcal.d.ts +38 -0
- package/dist/plugins/builtin/gcal.d.ts.map +1 -0
- package/dist/plugins/builtin/gcal.js +280 -0
- package/dist/plugins/builtin/gcal.js.map +1 -0
- package/dist/plugins/builtin/gdrive.d.ts +26 -0
- package/dist/plugins/builtin/gdrive.d.ts.map +1 -0
- package/dist/plugins/builtin/gdrive.js +295 -0
- package/dist/plugins/builtin/gdrive.js.map +1 -0
- package/dist/plugins/builtin/github-actions.d.ts +38 -0
- package/dist/plugins/builtin/github-actions.d.ts.map +1 -0
- package/dist/plugins/builtin/github-actions.js +629 -0
- package/dist/plugins/builtin/github-actions.js.map +1 -0
- package/dist/plugins/builtin/github.d.ts +26 -0
- package/dist/plugins/builtin/github.d.ts.map +1 -0
- package/dist/plugins/builtin/github.js +800 -0
- package/dist/plugins/builtin/github.js.map +1 -0
- package/dist/plugins/builtin/gmail.d.ts +50 -0
- package/dist/plugins/builtin/gmail.d.ts.map +1 -0
- package/dist/plugins/builtin/gmail.js +445 -0
- package/dist/plugins/builtin/gmail.js.map +1 -0
- package/dist/plugins/builtin/hash.d.ts +11 -0
- package/dist/plugins/builtin/hash.d.ts.map +1 -0
- package/dist/plugins/builtin/hash.js +95 -0
- package/dist/plugins/builtin/hash.js.map +1 -0
- package/dist/plugins/builtin/homekit.d.ts +53 -0
- package/dist/plugins/builtin/homekit.d.ts.map +1 -0
- package/dist/plugins/builtin/homekit.js +341 -0
- package/dist/plugins/builtin/homekit.js.map +1 -0
- package/dist/plugins/builtin/index.d.ts +4 -0
- package/dist/plugins/builtin/index.d.ts.map +1 -0
- package/dist/plugins/builtin/index.js +96 -0
- package/dist/plugins/builtin/index.js.map +1 -0
- package/dist/plugins/builtin/jira.d.ts +50 -0
- package/dist/plugins/builtin/jira.d.ts.map +1 -0
- package/dist/plugins/builtin/jira.js +353 -0
- package/dist/plugins/builtin/jira.js.map +1 -0
- package/dist/plugins/builtin/linear.d.ts +35 -0
- package/dist/plugins/builtin/linear.d.ts.map +1 -0
- package/dist/plugins/builtin/linear.js +397 -0
- package/dist/plugins/builtin/linear.js.map +1 -0
- package/dist/plugins/builtin/lumen.d.ts +21 -0
- package/dist/plugins/builtin/lumen.d.ts.map +1 -0
- package/dist/plugins/builtin/lumen.js +404 -0
- package/dist/plugins/builtin/lumen.js.map +1 -0
- package/dist/plugins/builtin/memory.d.ts +22 -0
- package/dist/plugins/builtin/memory.d.ts.map +1 -0
- package/dist/plugins/builtin/memory.js +184 -0
- package/dist/plugins/builtin/memory.js.map +1 -0
- package/dist/plugins/builtin/n8n.d.ts +60 -0
- package/dist/plugins/builtin/n8n.d.ts.map +1 -0
- package/dist/plugins/builtin/n8n.js +519 -0
- package/dist/plugins/builtin/n8n.js.map +1 -0
- package/dist/plugins/builtin/network.d.ts +11 -0
- package/dist/plugins/builtin/network.d.ts.map +1 -0
- package/dist/plugins/builtin/network.js +88 -0
- package/dist/plugins/builtin/network.js.map +1 -0
- package/dist/plugins/builtin/notes.d.ts +47 -0
- package/dist/plugins/builtin/notes.d.ts.map +1 -0
- package/dist/plugins/builtin/notes.js +641 -0
- package/dist/plugins/builtin/notes.js.map +1 -0
- package/dist/plugins/builtin/notion.d.ts +47 -0
- package/dist/plugins/builtin/notion.d.ts.map +1 -0
- package/dist/plugins/builtin/notion.js +317 -0
- package/dist/plugins/builtin/notion.js.map +1 -0
- package/dist/plugins/builtin/shell.d.ts +12 -0
- package/dist/plugins/builtin/shell.d.ts.map +1 -0
- package/dist/plugins/builtin/shell.js +310 -0
- package/dist/plugins/builtin/shell.js.map +1 -0
- package/dist/plugins/builtin/slack.d.ts +31 -0
- package/dist/plugins/builtin/slack.d.ts.map +1 -0
- package/dist/plugins/builtin/slack.js +295 -0
- package/dist/plugins/builtin/slack.js.map +1 -0
- package/dist/plugins/builtin/spotify.d.ts +55 -0
- package/dist/plugins/builtin/spotify.d.ts.map +1 -0
- package/dist/plugins/builtin/spotify.js +623 -0
- package/dist/plugins/builtin/spotify.js.map +1 -0
- package/dist/plugins/builtin/stripe.d.ts +35 -0
- package/dist/plugins/builtin/stripe.d.ts.map +1 -0
- package/dist/plugins/builtin/stripe.js +376 -0
- package/dist/plugins/builtin/stripe.js.map +1 -0
- package/dist/plugins/builtin/system.d.ts +11 -0
- package/dist/plugins/builtin/system.d.ts.map +1 -0
- package/dist/plugins/builtin/system.js +91 -0
- package/dist/plugins/builtin/system.js.map +1 -0
- package/dist/plugins/builtin/text-tools.d.ts +11 -0
- package/dist/plugins/builtin/text-tools.d.ts.map +1 -0
- package/dist/plugins/builtin/text-tools.js +146 -0
- package/dist/plugins/builtin/text-tools.js.map +1 -0
- package/dist/plugins/builtin/timezone.d.ts +13 -0
- package/dist/plugins/builtin/timezone.d.ts.map +1 -0
- package/dist/plugins/builtin/timezone.js +164 -0
- package/dist/plugins/builtin/timezone.js.map +1 -0
- package/dist/plugins/builtin/todoist.d.ts +49 -0
- package/dist/plugins/builtin/todoist.d.ts.map +1 -0
- package/dist/plugins/builtin/todoist.js +540 -0
- package/dist/plugins/builtin/todoist.js.map +1 -0
- package/dist/plugins/builtin/translate.d.ts +11 -0
- package/dist/plugins/builtin/translate.d.ts.map +1 -0
- package/dist/plugins/builtin/translate.js +42 -0
- package/dist/plugins/builtin/translate.js.map +1 -0
- package/dist/plugins/builtin/url-tools.d.ts +11 -0
- package/dist/plugins/builtin/url-tools.d.ts.map +1 -0
- package/dist/plugins/builtin/url-tools.js +70 -0
- package/dist/plugins/builtin/url-tools.js.map +1 -0
- package/dist/plugins/builtin/vercel.d.ts +55 -0
- package/dist/plugins/builtin/vercel.d.ts.map +1 -0
- package/dist/plugins/builtin/vercel.js +514 -0
- package/dist/plugins/builtin/vercel.js.map +1 -0
- package/dist/plugins/builtin/weather.d.ts +13 -0
- package/dist/plugins/builtin/weather.d.ts.map +1 -0
- package/dist/plugins/builtin/weather.js +103 -0
- package/dist/plugins/builtin/weather.js.map +1 -0
- package/dist/plugins/builtin/x.d.ts +54 -0
- package/dist/plugins/builtin/x.d.ts.map +1 -0
- package/dist/plugins/builtin/x.js +402 -0
- package/dist/plugins/builtin/x.js.map +1 -0
- package/dist/plugins/manager.d.ts +77 -0
- package/dist/plugins/manager.d.ts.map +1 -0
- package/dist/plugins/manager.js +141 -0
- package/dist/plugins/manager.js.map +1 -0
- package/dist/plugins/validation.d.ts +18 -0
- package/dist/plugins/validation.d.ts.map +1 -0
- package/dist/plugins/validation.js +81 -0
- package/dist/plugins/validation.js.map +1 -0
- package/dist/security/auth.d.ts +23 -0
- package/dist/security/auth.d.ts.map +1 -0
- package/dist/security/auth.js +56 -0
- package/dist/security/auth.js.map +1 -0
- package/dist/security/keychain.d.ts +60 -0
- package/dist/security/keychain.d.ts.map +1 -0
- package/dist/security/keychain.js +213 -0
- package/dist/security/keychain.js.map +1 -0
- package/dist/utils/google-auth.d.ts +21 -0
- package/dist/utils/google-auth.d.ts.map +1 -0
- package/dist/utils/google-auth.js +135 -0
- package/dist/utils/google-auth.js.map +1 -0
- package/dist/utils/retry.d.ts +5 -0
- package/dist/utils/retry.d.ts.map +1 -0
- package/dist/utils/retry.js +34 -0
- package/dist/utils/retry.js.map +1 -0
- package/docs/README.md +13 -0
- package/docs/api.md +210 -0
- package/docs/getting-started.md +100 -0
- package/docs/plugins.md +306 -0
- package/docs-site/.vitepress/config.ts +59 -0
- package/docs-site/README.md +12 -0
- package/docs-site/index.md +30 -0
- package/eslint.config.js +29 -0
- package/install.ps1 +334 -0
- package/install.sh +1119 -0
- package/local-install.sh +304 -0
- package/package.json +90 -0
- package/packages/README.md +11 -0
- package/packages/plugin-sdk/README.md +12 -0
- package/packages/plugin-sdk/package.json +22 -0
- package/packages/plugin-sdk/src/README.md +11 -0
- package/packages/plugin-sdk/src/index.ts +191 -0
- package/sdks/README.md +26 -0
- package/sdks/csharp/ConductorClient.cs +65 -0
- package/sdks/csharp/README.md +11 -0
- package/sdks/go/README.md +11 -0
- package/sdks/go/conductor.go +257 -0
- package/sdks/java/ConductorClient.java +27 -0
- package/sdks/java/README.md +11 -0
- package/sdks/php/README.md +11 -0
- package/sdks/php/src/Client.php +72 -0
- package/sdks/python/README.md +12 -0
- package/sdks/python/conductor/__init__.py +227 -0
- package/sdks/python/pyproject.toml +30 -0
- package/sdks/ruby/README.md +11 -0
- package/sdks/ruby/lib/conductor.rb +46 -0
- package/sdks/rust/Cargo.toml +14 -0
- package/sdks/rust/README.md +11 -0
- package/sdks/swift/README.md +11 -0
- package/sdks/swift/Sources/Conductor/ConductorClient.swift +65 -0
- package/skills/conductor-mcp/SKILL.md +38 -0
- package/src/README.md +20 -0
- package/src/ai/README.md +18 -0
- package/src/ai/base.ts +93 -0
- package/src/ai/claude.ts +162 -0
- package/src/ai/gemini.ts +188 -0
- package/src/ai/maestro.ts +168 -0
- package/src/ai/manager.ts +537 -0
- package/src/ai/ollama.ts +186 -0
- package/src/ai/openai.ts +147 -0
- package/src/ai/openrouter.ts +152 -0
- package/src/bot/README.md +12 -0
- package/src/bot/slack.ts +164 -0
- package/src/bot/telegram.ts +185 -0
- package/src/cli/README.md +24 -0
- package/src/cli/commands/README.md +20 -0
- package/src/cli/commands/ai.ts +170 -0
- package/src/cli/commands/doctor.ts +221 -0
- package/src/cli/commands/init.ts +348 -0
- package/src/cli/commands/install.ts +792 -0
- package/src/cli/commands/lifecycle.ts +95 -0
- package/src/cli/commands/marketplace.ts +253 -0
- package/src/cli/commands/mcp.ts +92 -0
- package/src/cli/commands/onboard.ts +248 -0
- package/src/cli/commands/plugin-create.ts +130 -0
- package/src/cli/commands/plugins.ts +36 -0
- package/src/cli/commands/release.ts +251 -0
- package/src/cli/commands/telegram.ts +25 -0
- package/src/cli/index.ts +450 -0
- package/src/config/README.md +11 -0
- package/src/config/oauth.ts +26 -0
- package/src/core/README.md +22 -0
- package/src/core/audit.ts +291 -0
- package/src/core/circuit-breaker.ts +129 -0
- package/src/core/conductor.ts +240 -0
- package/src/core/config.ts +149 -0
- package/src/core/database.ts +411 -0
- package/src/core/errors.ts +275 -0
- package/src/core/health.ts +159 -0
- package/src/core/interfaces.ts +75 -0
- package/src/core/logger.ts +33 -0
- package/src/core/rbac.ts +321 -0
- package/src/core/retry.ts +61 -0
- package/src/core/webhooks.ts +234 -0
- package/src/core/zero-config.ts +72 -0
- package/src/dashboard/README.md +15 -0
- package/src/dashboard/cli.ts +48 -0
- package/src/dashboard/index.html +3426 -0
- package/src/dashboard/server.ts +1544 -0
- package/src/mcp/README.md +20 -0
- package/src/mcp/server.ts +475 -0
- package/src/mcp/tools/README.md +11 -0
- package/src/mcp/tools/misc.ts +61 -0
- package/src/plugins/README.md +28 -0
- package/src/plugins/builtin/README.md +23 -0
- package/src/plugins/builtin/calculator.ts +178 -0
- package/src/plugins/builtin/colors.ts +201 -0
- package/src/plugins/builtin/cron.ts +649 -0
- package/src/plugins/builtin/crypto.ts +85 -0
- package/src/plugins/builtin/database.ts +235 -0
- package/src/plugins/builtin/docker.ts +426 -0
- package/src/plugins/builtin/fun.ts +118 -0
- package/src/plugins/builtin/gcal.ts +305 -0
- package/src/plugins/builtin/gdrive.ts +326 -0
- package/src/plugins/builtin/github-actions.ts +666 -0
- package/src/plugins/builtin/github.ts +912 -0
- package/src/plugins/builtin/gmail.ts +492 -0
- package/src/plugins/builtin/hash.ts +98 -0
- package/src/plugins/builtin/homekit.ts +389 -0
- package/src/plugins/builtin/index.ts +116 -0
- package/src/plugins/builtin/jira.ts +380 -0
- package/src/plugins/builtin/linear.ts +448 -0
- package/src/plugins/builtin/lumen.ts +497 -0
- package/src/plugins/builtin/memory.ts +200 -0
- package/src/plugins/builtin/n8n.ts +565 -0
- package/src/plugins/builtin/network.ts +92 -0
- package/src/plugins/builtin/notes.ts +689 -0
- package/src/plugins/builtin/notion.ts +348 -0
- package/src/plugins/builtin/shell.ts +334 -0
- package/src/plugins/builtin/slack.ts +327 -0
- package/src/plugins/builtin/spotify.ts +665 -0
- package/src/plugins/builtin/stripe.ts +388 -0
- package/src/plugins/builtin/system.ts +93 -0
- package/src/plugins/builtin/text-tools.ts +150 -0
- package/src/plugins/builtin/timezone.ts +173 -0
- package/src/plugins/builtin/todoist.ts +625 -0
- package/src/plugins/builtin/translate.ts +47 -0
- package/src/plugins/builtin/url-tools.ts +73 -0
- package/src/plugins/builtin/vercel.ts +546 -0
- package/src/plugins/builtin/weather.ts +112 -0
- package/src/plugins/builtin/x.ts +440 -0
- package/src/plugins/manager.ts +213 -0
- package/src/plugins/validation.ts +94 -0
- package/src/security/README.md +12 -0
- package/src/security/auth.ts +72 -0
- package/src/security/keychain.ts +226 -0
- package/src/utils/README.md +12 -0
- package/src/utils/google-auth.ts +159 -0
- package/src/utils/retry.ts +41 -0
- package/test-all.mjs +1256 -0
- package/test.mjs +633 -0
- package/tests/README.md +19 -0
- package/tests/calculator.test.ts +54 -0
- package/tests/docker.test.ts +42 -0
- package/tests/load.test.ts +129 -0
- package/tests/mcp.test.ts +14 -0
- package/tests/shell.test.ts +42 -0
- package/tsconfig.json +21 -0
- package/vitest.config.ts +14 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# Getting Started
|
|
2
|
+
|
|
3
|
+
Install Conductor and connect your first AI agent in under 60 seconds.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
- **Node.js 18+** (20+ recommended)
|
|
8
|
+
- **npm, pnpm, or yarn**
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm install -g @conductor/cli
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Quick Start
|
|
17
|
+
|
|
18
|
+
### Step 1: Start the MCP Server
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
conductor mcp start
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
That's it. The server starts with 20+ tools that work without any configuration:
|
|
25
|
+
- File system (read, write, list, search)
|
|
26
|
+
- Shell (safe commands only)
|
|
27
|
+
- Git (status, diff, log)
|
|
28
|
+
- Calculator (math, conversions, dates)
|
|
29
|
+
- Weather, crypto, network tools, and more
|
|
30
|
+
|
|
31
|
+
### Step 2: Connect Your AI Agent
|
|
32
|
+
|
|
33
|
+
**Claude Desktop:**
|
|
34
|
+
```bash
|
|
35
|
+
conductor mcp setup
|
|
36
|
+
```
|
|
37
|
+
Then restart Claude Desktop.
|
|
38
|
+
|
|
39
|
+
**Claude Code:**
|
|
40
|
+
Add to your `~/.claude/settings.json`:
|
|
41
|
+
```json
|
|
42
|
+
{
|
|
43
|
+
"mcpServers": {
|
|
44
|
+
"conductor": {
|
|
45
|
+
"command": "conductor",
|
|
46
|
+
"args": ["mcp", "start"]
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
**Cursor:**
|
|
53
|
+
Settings → MCP → Add Server → Command: `conductor`, Args: `mcp start`
|
|
54
|
+
|
|
55
|
+
**Cline:**
|
|
56
|
+
Settings → MCP Servers → Add → Command: `conductor`, Args: `mcp start`
|
|
57
|
+
|
|
58
|
+
### Step 3: Test It
|
|
59
|
+
|
|
60
|
+
Ask your AI agent:
|
|
61
|
+
- "What files are in the current directory?"
|
|
62
|
+
- "What's the weather in Tokyo?"
|
|
63
|
+
- "Calculate sqrt(144) + 2^8"
|
|
64
|
+
- "Show me the git status"
|
|
65
|
+
|
|
66
|
+
### Step 4: Enable More Plugins
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
# Enable GitHub integration
|
|
70
|
+
conductor plugins enable github
|
|
71
|
+
conductor config set github.token ghp_your_token
|
|
72
|
+
|
|
73
|
+
# Enable Docker integration
|
|
74
|
+
conductor plugins enable docker
|
|
75
|
+
|
|
76
|
+
# Enable database integration
|
|
77
|
+
conductor plugins enable database
|
|
78
|
+
conductor config set database.postgres_url postgresql://user:pass@host:5432/db
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
## Verify Everything Works
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
# Run the doctor command
|
|
85
|
+
conductor doctor
|
|
86
|
+
|
|
87
|
+
# Check health
|
|
88
|
+
conductor health
|
|
89
|
+
|
|
90
|
+
# List all available tools
|
|
91
|
+
conductor plugins list
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Next Steps
|
|
95
|
+
|
|
96
|
+
- [Configuration Guide](./configuration.md) — all settings explained
|
|
97
|
+
- [Plugin Development](./plugins.md) — build your own plugins
|
|
98
|
+
- [Webhook System](./webhooks.md) — event-driven integrations
|
|
99
|
+
- [Security](./security.md) — audit logs, RBAC, encryption
|
|
100
|
+
- [API Reference](./api.md) — every tool documented
|
package/docs/plugins.md
ADDED
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
# Conductor Plugin Reference
|
|
2
|
+
|
|
3
|
+
All built-in plugins live in `src/plugins/builtin/`. Each plugin implements the `Plugin` interface.
|
|
4
|
+
|
|
5
|
+
## Plugin Interface
|
|
6
|
+
|
|
7
|
+
```typescript
|
|
8
|
+
interface Plugin {
|
|
9
|
+
name: string;
|
|
10
|
+
description: string;
|
|
11
|
+
version: string;
|
|
12
|
+
initialize(conductor: Conductor): Promise<void>;
|
|
13
|
+
isConfigured(): boolean;
|
|
14
|
+
getTools(): PluginTool[];
|
|
15
|
+
configSchema?: PluginConfigSchema;
|
|
16
|
+
getContext?(): Promise<string | null>;
|
|
17
|
+
}
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Utility Plugins (no credentials required)
|
|
23
|
+
|
|
24
|
+
### calculator
|
|
25
|
+
Math expression evaluator, unit converter, date calculator.
|
|
26
|
+
|
|
27
|
+
**Tools**: `calculate`, `convert_unit`, `date_calc`
|
|
28
|
+
|
|
29
|
+
### colors
|
|
30
|
+
Color format conversion, contrast checking, palette generation.
|
|
31
|
+
|
|
32
|
+
**Tools**: `colors_convert`, `colors_contrast`, `colors_palette`
|
|
33
|
+
|
|
34
|
+
### hash
|
|
35
|
+
Hashing, base64 encoding/decoding.
|
|
36
|
+
|
|
37
|
+
**Tools**: `hash_text`, `base64_encode`, `base64_decode`
|
|
38
|
+
|
|
39
|
+
### text-tools
|
|
40
|
+
JSON formatter, word counter, text transformers.
|
|
41
|
+
|
|
42
|
+
**Tools**: `format_json`, `word_count`, `text_transform`
|
|
43
|
+
|
|
44
|
+
### timezone
|
|
45
|
+
Timezone conversion and lookup.
|
|
46
|
+
|
|
47
|
+
**Tools**: `timezone_convert`, `timezone_list`
|
|
48
|
+
|
|
49
|
+
### crypto
|
|
50
|
+
Cryptocurrency prices and search.
|
|
51
|
+
|
|
52
|
+
**Tools**: `crypto_price`, `crypto_search`
|
|
53
|
+
|
|
54
|
+
### network
|
|
55
|
+
DNS lookup, IP geolocation, reverse DNS.
|
|
56
|
+
|
|
57
|
+
**Tools**: `dns_lookup`, `ip_info`, `reverse_dns`
|
|
58
|
+
|
|
59
|
+
### url-tools
|
|
60
|
+
URL expansion, QR code generation, URL parsing.
|
|
61
|
+
|
|
62
|
+
**Tools**: `expand_url`, `url_parse`
|
|
63
|
+
|
|
64
|
+
### fun
|
|
65
|
+
Random jokes and facts.
|
|
66
|
+
|
|
67
|
+
**Tools**: `random_joke`, `random_fact`
|
|
68
|
+
|
|
69
|
+
### notes
|
|
70
|
+
Local markdown note management.
|
|
71
|
+
|
|
72
|
+
**Tools**: `notes_create`, `notes_list`, `notes_read`, `notes_update`, `notes_delete`, `notes_search`
|
|
73
|
+
|
|
74
|
+
### cron
|
|
75
|
+
Cron expression parser and scheduler.
|
|
76
|
+
|
|
77
|
+
**Tools**: `cron_parse`, `cron_next`
|
|
78
|
+
|
|
79
|
+
### system
|
|
80
|
+
System stats, process management, clipboard.
|
|
81
|
+
|
|
82
|
+
**Tools**: `system_info`, `list_processes`, `kill_process`, `clipboard_read`, `clipboard_write`
|
|
83
|
+
|
|
84
|
+
### translate
|
|
85
|
+
Text translation using LibreTranslate.
|
|
86
|
+
|
|
87
|
+
**Tools**: `translate_text`, `detect_language`
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## Google Plugins
|
|
92
|
+
|
|
93
|
+
All Google plugins require Google OAuth. Connect via: `conductor auth google`
|
|
94
|
+
|
|
95
|
+
**Keychain**: `google / access_token`, `google / refresh_token`
|
|
96
|
+
|
|
97
|
+
### gmail
|
|
98
|
+
Read, send, archive emails and manage labels.
|
|
99
|
+
|
|
100
|
+
**Tools**: `gmail_list`, `gmail_read`, `gmail_send`, `gmail_reply`, `gmail_archive`, `gmail_labels`, `gmail_search`
|
|
101
|
+
|
|
102
|
+
**getContext()**: Returns unread message count.
|
|
103
|
+
|
|
104
|
+
### gcal
|
|
105
|
+
Create, read, update, delete calendar events.
|
|
106
|
+
|
|
107
|
+
**Tools**: `gcal_list_calendars`, `gcal_list_events`, `gcal_create_event`, `gcal_update_event`, `gcal_delete_event`, `gcal_find_free_time`
|
|
108
|
+
|
|
109
|
+
**getContext()**: Returns today's event summaries.
|
|
110
|
+
|
|
111
|
+
### gdrive
|
|
112
|
+
Browse, read, create, upload files in Google Drive.
|
|
113
|
+
|
|
114
|
+
**Tools**: `gdrive_list`, `gdrive_read`, `gdrive_create`, `gdrive_upload`, `gdrive_search`
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
## Developer Plugins
|
|
119
|
+
|
|
120
|
+
### github
|
|
121
|
+
GitHub repositories, issues, stars, user info.
|
|
122
|
+
|
|
123
|
+
**Required credential**: `github / token` (PAT with `repo` and `workflow` scopes)
|
|
124
|
+
|
|
125
|
+
**Tools**: `github_user`, `github_repo`, `github_repos`, `github_search_repos`, `github_issues`, `github_create_issue`, `github_close_issue`, `github_prs`, `github_create_pr`, `github_merge_pr`, `github_stars`
|
|
126
|
+
|
|
127
|
+
### github-actions
|
|
128
|
+
Trigger and monitor GitHub Actions workflows.
|
|
129
|
+
|
|
130
|
+
**Required credential**: `github / token`
|
|
131
|
+
|
|
132
|
+
**Tools**: `github_actions_list`, `github_actions_run`, `github_actions_status`
|
|
133
|
+
|
|
134
|
+
### vercel
|
|
135
|
+
Deploy and manage Vercel projects and deployments.
|
|
136
|
+
|
|
137
|
+
**Required credential**: `vercel / token`
|
|
138
|
+
|
|
139
|
+
**Tools**: `vercel_list_projects`, `vercel_deployments`, `vercel_deploy`, `vercel_logs`
|
|
140
|
+
|
|
141
|
+
### n8n
|
|
142
|
+
Trigger and manage n8n automation workflows.
|
|
143
|
+
|
|
144
|
+
**Required credentials**: `n8n / api_key`, `n8n / base_url`
|
|
145
|
+
|
|
146
|
+
**Tools**: `n8n_list_workflows`, `n8n_trigger_workflow`, `n8n_get_execution`
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
|
|
150
|
+
## Service Plugins
|
|
151
|
+
|
|
152
|
+
### notion
|
|
153
|
+
Read, search, and create Notion pages and databases.
|
|
154
|
+
|
|
155
|
+
**Required credential**: `notion / api_key` (Internal Integration Token)
|
|
156
|
+
|
|
157
|
+
**Setup**: Visit https://www.notion.so/my-integrations, create integration, copy token.
|
|
158
|
+
|
|
159
|
+
**Tools**: `notion_search`, `notion_get_page`, `notion_create_page`, `notion_query_database`, `notion_append_block`
|
|
160
|
+
|
|
161
|
+
### spotify
|
|
162
|
+
Control Spotify playback and search music.
|
|
163
|
+
|
|
164
|
+
**Required credentials**: `spotify / client_id`, `spotify / client_secret`, `spotify / access_token`
|
|
165
|
+
|
|
166
|
+
**Tools**: `spotify_search`, `spotify_play`, `spotify_pause`, `spotify_next`, `spotify_current`, `spotify_queue`
|
|
167
|
+
|
|
168
|
+
### weather
|
|
169
|
+
Current weather and forecasts.
|
|
170
|
+
|
|
171
|
+
**Required credential**: `weather / api_key` (OpenWeatherMap API key)
|
|
172
|
+
|
|
173
|
+
**Tools**: `weather_current`, `weather_forecast`
|
|
174
|
+
|
|
175
|
+
### todoist
|
|
176
|
+
Manage Todoist tasks, projects, and comments.
|
|
177
|
+
|
|
178
|
+
**Required credential**: `todoist / api_token`
|
|
179
|
+
|
|
180
|
+
**Setup**: Go to https://app.todoist.com/app/settings/integrations/developer, copy API token.
|
|
181
|
+
|
|
182
|
+
**Tools**:
|
|
183
|
+
- `todoist_list_tasks` — List tasks with optional filters
|
|
184
|
+
- `todoist_create_task` — Create a task with natural-language due date
|
|
185
|
+
- `todoist_complete_task` — Mark a task as complete
|
|
186
|
+
- `todoist_update_task` — Update task content, due date, priority
|
|
187
|
+
- `todoist_delete_task` — Permanently delete a task (requiresApproval)
|
|
188
|
+
- `todoist_get_projects` — List all projects
|
|
189
|
+
- `todoist_search_tasks` — Search with Todoist filter syntax
|
|
190
|
+
- `todoist_add_comment` — Add a comment to a task
|
|
191
|
+
|
|
192
|
+
**getContext()**: Returns overdue and today's task counts.
|
|
193
|
+
|
|
194
|
+
### x (Twitter)
|
|
195
|
+
Post tweets and manage X/Twitter account.
|
|
196
|
+
|
|
197
|
+
**Required credential**: `x / api_key`
|
|
198
|
+
|
|
199
|
+
**Tools**: `x_post`, `x_read_timeline`, `x_search`
|
|
200
|
+
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
## Messaging Plugins
|
|
204
|
+
|
|
205
|
+
### slack
|
|
206
|
+
Send messages and manage Slack channels and threads.
|
|
207
|
+
|
|
208
|
+
**Required credential**: `slack / bot_token` (Bot User OAuth Token)
|
|
209
|
+
|
|
210
|
+
**Tools**: `slack_send_message`, `slack_list_channels`, `slack_read_channel`, `slack_reply_thread`
|
|
211
|
+
|
|
212
|
+
---
|
|
213
|
+
|
|
214
|
+
## Smart Home
|
|
215
|
+
|
|
216
|
+
### homekit
|
|
217
|
+
Control HomeKit accessories via the homebridge REST API.
|
|
218
|
+
|
|
219
|
+
**Required credentials**: `homekit / base_url`, `homekit / username`, `homekit / password`
|
|
220
|
+
|
|
221
|
+
**Tools**: `homekit_list`, `homekit_get`, `homekit_set`
|
|
222
|
+
|
|
223
|
+
---
|
|
224
|
+
|
|
225
|
+
## Infrastructure Plugins
|
|
226
|
+
|
|
227
|
+
### docker
|
|
228
|
+
Docker container, image, volume, and network management.
|
|
229
|
+
|
|
230
|
+
**No credentials required** — uses the local Docker CLI.
|
|
231
|
+
|
|
232
|
+
**Tools**:
|
|
233
|
+
- `docker_containers` — List containers (use `--all` for stopped)
|
|
234
|
+
- `docker_container_logs` — Get container logs
|
|
235
|
+
- `docker_container_action` — start/stop/restart/pause/kill/remove
|
|
236
|
+
- `docker_images` — List images
|
|
237
|
+
- `docker_pull` — Pull an image
|
|
238
|
+
- `docker_run` — Run a container (requiresApproval)
|
|
239
|
+
- `docker_volumes` — List volumes
|
|
240
|
+
- `docker_networks` — List networks
|
|
241
|
+
- `docker_stats` — Resource usage stats
|
|
242
|
+
|
|
243
|
+
### database
|
|
244
|
+
Query PostgreSQL, MySQL, MongoDB, and Redis databases.
|
|
245
|
+
|
|
246
|
+
**Required credentials** (stored encrypted in keychain):
|
|
247
|
+
- `database / postgres_url` — `postgresql://user:pass@host:5432/db`
|
|
248
|
+
- `database / mysql_url` — `mysql://user:pass@host:3306/db`
|
|
249
|
+
- `database / mongo_url` — `mongodb://user:pass@host:27017/db`
|
|
250
|
+
- `database / redis_url` — `redis://:pass@host:6379/0`
|
|
251
|
+
|
|
252
|
+
**Tools**:
|
|
253
|
+
- `db_postgres_query` — Read-only SELECT query
|
|
254
|
+
- `db_mysql_query` — Read-only SELECT query
|
|
255
|
+
- `db_mongo_find` — Query a collection
|
|
256
|
+
- `db_redis_command` — Execute a Redis command
|
|
257
|
+
- `db_list_connections` — List configured connections
|
|
258
|
+
|
|
259
|
+
### shell
|
|
260
|
+
Safe shell command execution with approval workflow and path validation.
|
|
261
|
+
|
|
262
|
+
**No credentials required.**
|
|
263
|
+
|
|
264
|
+
**Tools**:
|
|
265
|
+
- `shell_run` — Run a whitelisted command (requiresApproval)
|
|
266
|
+
- `shell_read_file` — Read file contents
|
|
267
|
+
- `shell_write_file` — Write content to file (requiresApproval)
|
|
268
|
+
- `shell_list_dir` — List directory contents
|
|
269
|
+
- `shell_search_files` — Search files by glob pattern
|
|
270
|
+
- `shell_search_content` — Search file contents with grep
|
|
271
|
+
|
|
272
|
+
**Safety features:**
|
|
273
|
+
- Whitelist-based command filtering (no arbitrary commands)
|
|
274
|
+
- Path traversal protection
|
|
275
|
+
- Dangerous pattern detection (fork bombs, rm -rf /, etc.)
|
|
276
|
+
- 10MB output limit, 120s timeout
|
|
277
|
+
|
|
278
|
+
---
|
|
279
|
+
|
|
280
|
+
## AI
|
|
281
|
+
|
|
282
|
+
### lumen
|
|
283
|
+
Agentic AI coding assistant. Writes code, runs shell commands, manages git.
|
|
284
|
+
|
|
285
|
+
**Required**: Ollama running locally with the `lumen` model.
|
|
286
|
+
|
|
287
|
+
**Tools** (all with `requiresApproval: true` for shell-executing tools):
|
|
288
|
+
- `lumen_ask` — Ask Lumen to complete any coding task
|
|
289
|
+
- `lumen_shell` — Run a shell task
|
|
290
|
+
- `lumen_write_file` — Generate and write a file
|
|
291
|
+
- `lumen_fix_bug` — Investigate and fix a bug
|
|
292
|
+
- `lumen_git_commit` — Stage and commit changes
|
|
293
|
+
- `lumen_git_push` — Push to origin
|
|
294
|
+
- `lumen_git_status` — Show git status
|
|
295
|
+
- `lumen_ping` — Check if Lumen is available
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
## System Plugins
|
|
300
|
+
|
|
301
|
+
### memory
|
|
302
|
+
Long-term memory storage and recall using SQLite.
|
|
303
|
+
|
|
304
|
+
**Tools**: `memory_recall`, `memory_store`, `memory_forget`, `memory_list`, `search_past_conversations`
|
|
305
|
+
|
|
306
|
+
Note: `search_past_conversations` is scoped to the current user's conversation history.
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { defineConfig } from 'vitepress'
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
title: 'Conductor',
|
|
5
|
+
description: 'The AI Tool Hub — One MCP server. 100+ tools. Every AI agent.',
|
|
6
|
+
themeConfig: {
|
|
7
|
+
logo: '/logo.svg',
|
|
8
|
+
nav: [
|
|
9
|
+
{ text: 'Docs', link: '/getting-started' },
|
|
10
|
+
{ text: 'API Reference', link: '/api' },
|
|
11
|
+
{ text: 'Plugins', link: '/plugins' },
|
|
12
|
+
{ text: 'SDKs', link: '/sdks' },
|
|
13
|
+
{ text: 'Changelog', link: '/changelog' },
|
|
14
|
+
],
|
|
15
|
+
sidebar: [
|
|
16
|
+
{
|
|
17
|
+
text: 'Getting Started',
|
|
18
|
+
items: [
|
|
19
|
+
{ text: 'Quick Start', link: '/getting-started' },
|
|
20
|
+
{ text: 'Configuration', link: '/configuration' },
|
|
21
|
+
{ text: 'CLI Reference', link: '/cli' },
|
|
22
|
+
],
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
text: 'Core',
|
|
26
|
+
items: [
|
|
27
|
+
{ text: 'MCP Server', link: '/mcp' },
|
|
28
|
+
{ text: 'Plugin Development', link: '/plugins' },
|
|
29
|
+
{ text: 'Webhook System', link: '/webhooks' },
|
|
30
|
+
{ text: 'Security & Audit', link: '/security' },
|
|
31
|
+
],
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
text: 'SDKs',
|
|
35
|
+
items: [
|
|
36
|
+
{ text: 'Overview', link: '/sdks' },
|
|
37
|
+
{ text: 'TypeScript', link: '/sdks/typescript' },
|
|
38
|
+
{ text: 'Python', link: '/sdks/python' },
|
|
39
|
+
{ text: 'Go', link: '/sdks/go' },
|
|
40
|
+
],
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
text: 'Reference',
|
|
44
|
+
items: [
|
|
45
|
+
{ text: 'API Reference', link: '/api' },
|
|
46
|
+
{ text: 'Changelog', link: '/changelog' },
|
|
47
|
+
{ text: 'Contributing', link: '/contributing' },
|
|
48
|
+
],
|
|
49
|
+
},
|
|
50
|
+
],
|
|
51
|
+
socialLinks: [
|
|
52
|
+
{ icon: 'github', link: 'https://github.com/conductor/conductor' },
|
|
53
|
+
],
|
|
54
|
+
footer: {
|
|
55
|
+
message: 'Released under the Apache 2.0 License.',
|
|
56
|
+
copyright: 'Copyright © 2026 Conductor Team',
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
})
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# docs-site
|
|
2
|
+
|
|
3
|
+
VitePress documentation site for Conductor.
|
|
4
|
+
|
|
5
|
+
## Contents
|
|
6
|
+
|
|
7
|
+
- `index.md` - Site landing page
|
|
8
|
+
- `.vitepress/` - VitePress configuration
|
|
9
|
+
|
|
10
|
+
## Architecture
|
|
11
|
+
|
|
12
|
+
This is the source for the rendered documentation website, built with VitePress. The site provides a browsable, searchable version of the markdown docs in `docs/`. Run the dev server with the VitePress CLI to preview changes locally.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: home
|
|
3
|
+
hero:
|
|
4
|
+
name: "Conductor"
|
|
5
|
+
text: "The AI Tool Hub"
|
|
6
|
+
tagline: One MCP server. 100+ tools. Every AI agent.
|
|
7
|
+
actions:
|
|
8
|
+
- theme: brand
|
|
9
|
+
text: Get Started
|
|
10
|
+
link: /getting-started
|
|
11
|
+
- theme: alt
|
|
12
|
+
text: API Reference
|
|
13
|
+
link: /api
|
|
14
|
+
- theme: alt
|
|
15
|
+
text: GitHub
|
|
16
|
+
link: https://github.com/conductor/conductor
|
|
17
|
+
features:
|
|
18
|
+
- icon: 🔌
|
|
19
|
+
title: One Connection
|
|
20
|
+
details: Add one line to your AI agent's config and get instant access to 100+ tools.
|
|
21
|
+
- icon: 🛡️
|
|
22
|
+
title: Stripe-Grade Reliability
|
|
23
|
+
details: Circuit breakers, automatic retries, audit logging, and health checks built in.
|
|
24
|
+
- icon: 🧩
|
|
25
|
+
title: Plugin SDK
|
|
26
|
+
details: Build custom tools in minutes with TypeScript, Zod validation, and testing utilities.
|
|
27
|
+
- icon: 🌐
|
|
28
|
+
title: 8 SDKs
|
|
29
|
+
details: TypeScript, Python, Go, Rust, Java, Ruby, PHP, C# — integrate from any language.
|
|
30
|
+
---
|
package/eslint.config.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import tseslint from '@typescript-eslint/eslint-plugin';
|
|
2
|
+
import tsparser from '@typescript-eslint/parser';
|
|
3
|
+
import prettierConfig from 'eslint-config-prettier';
|
|
4
|
+
|
|
5
|
+
export default [
|
|
6
|
+
{
|
|
7
|
+
ignores: ['dist/', 'node_modules/', 'coverage/', 'docs-site/', 'sdks/'],
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
files: ['src/**/*.ts'],
|
|
11
|
+
languageOptions: {
|
|
12
|
+
parser: tsparser,
|
|
13
|
+
parserOptions: {
|
|
14
|
+
ecmaVersion: 2022,
|
|
15
|
+
sourceType: 'module',
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
plugins: {
|
|
19
|
+
'@typescript-eslint': tseslint,
|
|
20
|
+
},
|
|
21
|
+
rules: {
|
|
22
|
+
...tseslint.configs.recommended.rules,
|
|
23
|
+
'@typescript-eslint/no-explicit-any': 'warn',
|
|
24
|
+
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
|
|
25
|
+
'no-console': 'off',
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
prettierConfig,
|
|
29
|
+
];
|