New:Microsoft Teams Notifications Are Now Available in Socket.Learn more →
Get Started

moltbot-plugin-flock

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

moltbot-plugin-flock

FLock API Platform provider plugin for Moltbot

Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

FLock Provider Plugin for Moltbot

A Moltbot plugin that integrates FLock API Platform as a model provider.

Features

  • OpenAI-compatible API integration
  • API key authentication with secure storage in Moltbot auth profiles
  • Automatic provider configuration

Installation

moltbot plugins install @flock-io/moltbot-plugin-flock

Or if installing from a local path:

moltbot plugins install /path/to/moltbot-plugin-flock

Configuration

1. Enable the Plugin

After installation, enable the plugin:

moltbot plugins enable flock

2. Authenticate

Run the authentication flow to store your FLock API key:

moltbot models auth login --provider flock

This will:

  • Prompt for your FLock API key
  • Store the key securely in Moltbot's auth profiles
  • Configure the FLock provider in your Moltbot config

3. Add Models (Optional)

By default, the plugin configures an empty model list. You can add models in your Moltbot config:

models:
  providers:
    flock:
      models:
        - id: qwen3-30b-a3b-instruct-2507
          name: Qwen 3 30B
          input: [text]
          contextWindow: 32768
          maxTokens: 4096

Or use the dynamic model format:

moltbot agent --model flock/qwen3-30b-a3b-instruct-2507

Usage

Once configured, you can use FLock models with Moltbot:

# Use a specific FLock model
moltbot agent --model flock/your-model-id

# Or set as default in config
moltbot config set agents.defaults.model flock/your-model-id

API Reference

  • Provider ID: flock
  • Base URL: https://api.flock.io/v1
  • API Type: OpenAI-compatible (openai-completions)
  • Auth Header: Standard Authorization: Bearer <api-key>

Troubleshooting

Authentication Issues

If you encounter authentication errors, verify:

  • Your API key is valid on FLock Platform
  • The key is properly stored: check ~/.moltbot/auth-profiles.json

Model Not Found

If a model returns 404:

  • Verify the model ID exists on FLock
  • Check FLock documentation for available models

License

Apache-2.0

Keywords

moltbot

FAQs

Package last updated on 28 Jan 2026

Related posts