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

symbion-payload

v0.1.0

Published

Symbion für Payload CMS 3 — KI-Übersetzung mit Translation Memory, SEO & Content-Tools über die Symbion Cloud

Readme

symbion-payload

Symbion für Payload CMS 3 — KI-Übersetzung mit Translation Memory (v1), SEO & Content-Tools (v2) über die Symbion Cloud. Dritter Symbion-Client nach WordPress und Shopware 6.

Status: Translation + SEO komplett, E2E gegen die Live-Cloud bestanden.

Funktionsweise: Das Plugin registriert pro aktivierter Collection zwei Sidebar-Panels („Symbion Übersetzung" und „Symbion SEO"), in der Media-Collection einen Alt-Text-Generator, ein Settings-Global (Formalität, Modell, Glossar) sowie die Endpoints unter /api/symbion/*:

| Endpoint | Funktion | |---|---| | POST /api/symbion/translate | Dokument in Ziel-Locale übersetzen (Draft bei Versions-Collections) | | POST /api/symbion/seo/generate | Meta-Titel/-Beschreibung/Keywords aus dem Seiteninhalt | | POST /api/symbion/seo/analyze | Deep-Analyse des gerenderten Frontends (Score 0–100 + Findings) | | POST /api/symbion/seo/alt | Alt-Text per Vision-Modell (Bild geht als data:-URL — funktioniert auch lokal) | | POST /api/symbion/seo/keywords | Keyword-Reality-Check (Markt- vs. Binnensprache) | | GET /api/symbion/status | Diagnose + Feld-Mapping für die Panels |

Die SEO-Panels schreiben Vorschläge in den Form-State (Redakteur prüft und speichert); per API (write: true, Default) landen sie direkt im Dokument. SEO-Optionen:

symbionPayload({
  collections: ['pages'],
  seo: {
    titleField: 'metaTitle',        // Feld für den Meta-Titel
    descriptionField: 'metaDescription',
    mediaCollection: 'media',       // false = Alt-Text-Feature aus
    altField: 'alt',
    pagePath: (doc) => `/${doc.slug}`, // Frontend-Route für Analyse-URL
  },
})

Konzept & Architektur-Entscheidungen: DOCS/TECH/TECH-PAYLOAD-PLUGIN.md

Verwendung (Ziel-Bild)

// payload.config.ts
import { buildConfig } from 'payload'
import { symbionPayload } from 'symbion-payload'

export default buildConfig({
  // Voraussetzung: localization mit den gewünschten Locales aktiviert
  localization: {
    locales: ['de', 'en'],
    defaultLocale: 'de',
  },
  plugins: [
    symbionPayload({
      collections: ['pages', 'posts'],
    }),
  ],
})

| Env | Default | Zweck | |---|---|---| | SYMBION_LICENSE_KEY | — (Pflicht) | Symbion-Lizenz | | SYMBION_API_URL | https://symbion.dev/api/v1 | Cloud-API | | SYMBION_DOMAIN | Host aus config.serverURL | Domain-Verifikation der Lizenz |

Übersetzt werden nur Felder, die selbst oder über einen Vorfahren localized: true sind. Opt-out pro Feld: custom: { symbion: { skip: true } } — das Feld wird nicht übersetzt, sein Wert aber unverändert in die Ziel-Locale kopiert (für Anker, URL-Ziele, Codes).

Entwicklung

npm install
npm run check        # Typecheck + Tests
npm run build        # dist/ (ESM + d.ts)

Vom Repo-Root: npm run payload:check.