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

@ashdev/codex-plugin-recommendations-anilist

v1.10.5

Published

AniList recommendation provider plugin for Codex - generates personalized manga recommendations based on your reading history

Readme

@ashdev/codex-plugin-recommendations-anilist

A Codex plugin for personalized manga recommendations powered by AniList community data. Generates recommendations based on your reading history and ratings.

Features

  • Personalized manga recommendations from AniList
  • Based on your library ratings and reading history
  • Configurable maximum number of recommendations
  • Uses AniList's recommendation and user list APIs

Authentication

This plugin supports two authentication methods:

OAuth (Recommended)

If your Codex administrator has configured OAuth:

  1. Go to Settings > Integrations
  2. Click Connect with AniList Recommendations
  3. Authorize Codex on AniList
  4. You're connected!

Personal Access Token

If OAuth is not configured by the admin:

  1. Go to AniList Developer Settings
  2. Click Create New Client
  3. Set the redirect URL to https://anilist.co/api/v2/oauth/pin
  4. Click Save, then Authorize your new client
  5. Copy the token shown on the pin page
  6. In Codex, go to Settings > Integrations
  7. Paste the token in the access token field and click Save Token

Admin Setup

Adding the Plugin to Codex

  1. Log in to Codex as an administrator
  2. Navigate to Settings > Plugins
  3. Click Add Plugin
  4. Fill in the form:
    • Name: recommendations-anilist
    • Display Name: AniList Recommendations
    • Command: npx
    • Arguments: -y @ashdev/[email protected]
  5. Click Save
  6. Click Test Connection to verify the plugin works

Configuring OAuth (Optional)

To enable OAuth login for your users:

  1. Go to AniList Developer Settings
  2. Click Create New Client
  3. Set the redirect URL to {your-codex-url}/api/v1/user/plugins/oauth/callback
  4. Save and copy the Client ID
  5. In Codex, go to Settings > Plugins > click the gear icon on AniList Recommendations
  6. Go to the OAuth tab
  7. Paste the Client ID (and optionally the Client Secret)
  8. Click Save Changes

Without OAuth configured, users can still connect by pasting a personal access token.

npx Options

| Configuration | Arguments | Description | |--------------|-----------|-------------| | Latest version | -y @ashdev/codex-plugin-recommendations-anilist | Always uses latest | | Pinned version | -y @ashdev/[email protected] | Recommended for production | | Fast startup | -y --prefer-offline @ashdev/[email protected] | Skips version check if cached |

Configuration

Plugin Config

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | maxRecommendations | number | 20 | Maximum number of recommendations to generate (1-50) |

Using the Plugin

Once connected, recommendations appear in the Codex UI:

  1. Go to Settings > Integrations and verify the plugin shows as Connected
  2. Recommendations are generated based on your library ratings and reading history

Development

# Install dependencies
npm install

# Build the plugin
npm run build

# Type check
npm run typecheck

# Run tests
npm test

# Lint
npm run lint

Project Structure

plugins/recommendations-anilist/
├── src/
│   ├── index.ts          # Plugin entry point
│   ├── manifest.ts       # Plugin manifest
│   ├── anilist.ts        # AniList API client
│   └── anilist.test.ts   # API client tests
├── dist/
│   └── index.js          # Built bundle (excluded from git)
├── package.json
├── tsconfig.json
└── README.md

License

MIT