mpociot-claude-code-slack-bot

Namespace

mpociot-claude-code-slack-bot

Description:
  • Boost productivity with Claude Code Slack Bot! Get AI-driven coding assistance right in Slack. Chat in threads, stream responses, and keep context seamlessly across messages. Transform your coding workflow today!

Author:
See:

Methods

(async, static) createMpociotClaudeCodeSlackBotInstance(context, body) → {MpociotClaudeCodeSlackBot}

Description:
  • Create a new Claude Code Slack Bot instance

Example
import { Context } from '@osaas/client-core';
import { createMpociotClaudeCodeSlackBotInstance } from '@osaas/client-services';

const ctx = new Context();
const body: MpociotClaudeCodeSlackBotConfig = { name: 'myinstance', ... };
const instance = await createMpociotClaudeCodeSlackBotInstance(ctx, body);
console.log(instance.url);
Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

body MpociotClaudeCodeSlackBotConfig

Service instance configuration

Returns:
  • Service instance
Type
MpociotClaudeCodeSlackBot

(async, static) getMpociotClaudeCodeSlackBotInstance(context, name) → {MpociotClaudeCodeSlackBot}

Description:
  • Get a Claude Code Slack Bot instance

Example
import { Context } from '@osaas/client-core';
import { getMpociotClaudeCodeSlackBotInstance } from '@osaas/client-services';

const ctx = new Context();
const instance = await getMpociotClaudeCodeSlackBotInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the claude-code-slack-bot to be retrieved

Returns:
  • Service instance
Type
MpociotClaudeCodeSlackBot

(async, static) removeMpociotClaudeCodeSlackBotInstance(context, name)

Description:
  • Remove a Claude Code Slack Bot instance

Parameters:
Name Type Description
context Context

Open Source Cloud configuration context

name string

Name of the claude-code-slack-bot to be removed