🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@flock-io/moltbot-plugin-flock

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flock-io/moltbot-plugin-flock

FLock API Platform provider plugin for Moltbot

latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
5
25%
Maintainers
1
Weekly downloads
 
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

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts