npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

evolink-midjourney

v0.1.2

Published

Midjourney V8.1 API and agent skill for EvoLink image generation workflows

Downloads

617

Readme

evolink-midjourney

Midjourney V8.1 API docs, examples, and an installable agent skill for EvoLink image generation workflows.

Agent Install

Use the primary Agent install command:

npx skills add https://github.com/Evolink-AI/midjourney-api/tree/main/skills/midjourney-v8-1

If the skills registry CLI is unavailable, use the direct npm fallback:

npx evolink-midjourney@latest -y --path ~/.codex/skills --no-open

The installer copies the midjourney-v8-1 skill and prints:

  • EVOLINK_KEY_URL
  • AGENT_NEXT_ACTION
  • persistent EVOLINK_API_KEY guidance
  • non-generating key validation guidance
  • two low-credit starter prompts

API Key

Create or select an EvoLink API key:

Get an EvoLink API key

Set it for the current shell:

export EVOLINK_API_KEY="your_key_here"

Before the first image generation call, validate the key through a non-generating account or credits endpoint.

Quick API Example

curl --request POST \
  --url https://api.evolink.ai/v1/images/generations \
  --header "Authorization: Bearer ${EVOLINK_API_KEY}" \
  --header 'Content-Type: application/json' \
  --header 'X-EvoLink-Source: npm' \
  --header 'X-EvoLink-Skill: midjourney-v8-1' \
  --header 'X-EvoLink-Package: evolink-midjourney' \
  --header 'X-EvoLink-Campaign: midjourney-v8-1' \
  --header 'X-EvoLink-Touchpoint: package-readme' \
  --data '{
    "model": "mj-v8.1",
    "prompt": "A small red circle centered on a white background --ar 1:1",
    "quality": "standard",
    "model_params": {
      "speed": "fast"
    }
  }'

Midjourney workflows are asynchronous. Store the task ID, poll GET /v1/tasks/{task_id}, and save final image URLs before they expire.

Included Workflows

  • mj-v8.1 image generation
  • mj-v8.1-variation
  • mj-v8.1-remix
  • mj-v8.1-retexture
  • mj-v8.1-upload-paint
  • mj-v8.1-edit
  • mj-v8.1-remove-bg
  • preserved V7 workflow docs and examples

Local Verification

npx evolink-midjourney@latest --version
npx evolink-midjourney@latest --llms

Dry-run an installed skill script without creating an image task:

~/.codex/skills/midjourney-v8-1/scripts/midjourney-v8-1.sh \
  --prompt "A small red circle centered on a white background --ar 1:1" \
  --dry-run

Links