docs(bun): add tessl registry badge and marketplace entry - #196
Merged
Conversation
- Add tessl badge to plugins/bun/README.md under the title - Add Bun entry to root README.md Built-in Plugins section with tessl badge, description, install command, and source link - Add `/plugin install bun@pleaseai` to the install-commands list
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
There was a problem hiding this comment.
No issues found across 2 files
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Architecture diagram
sequenceDiagram
participant User as End User
participant CLI as Claude Code CLI
participant Plugin as Bun Plugin
participant TesslAPI as Tessl Badge API
participant Registry as tessl.io Registry
Note over User,Registry: Plugin Discovery & Install Flow
User->>CLI: /plugin install bun@pleaseai
CLI->>Registry: Fetch plugin metadata & badge
Registry-->>CLI: Return badge data
CLI->>CLI: Install bun plugin
CLI-->>User: Plugin installed
Note over User,Registry: Plugin Usage Flow
User->>CLI: Use bun skill
CLI->>Plugin: Execute use-bun skill
Plugin->>TesslAPI: CHANGED: Display badge (version status)
TesslAPI-->>Plugin: Badge rendered
Plugin-->>CLI: Skill output
CLI-->>User: Result
Note over Plugin,TesslAPI: Badge shows version compatibility<br>via tessl.io
Contributor
There was a problem hiding this comment.
Code Review
This pull request adds documentation and installation instructions for the new Bun plugin in the main README.md and plugins/bun/README.md, including Tessl badges. The reviewer suggested updating the list of available plugins in the main README.md to include other missing built-in plugins like portless and zod alongside bun to keep the list complete.
amondnet
added a commit
that referenced
this pull request
May 30, 2026
… plugins Mirror PR #196's badge treatment for the 15 newly published plugins: - Add the tessl badge to graphite/java-development/portone READMEs and scaffold badged READMEs for the 12 that lacked one. - Badge the 8 existing root README entries and add 7 new entries (graphite, claude-md-management, fetch, java-development, nuxt-i18n, portone, google-workspace) plus their install commands.
amondnet
added a commit
that referenced
this pull request
May 30, 2026
* docs(graphite): add setup onboarding workflow and trim skill prose Add a numbered, checkpoint-gated onboarding sequence to graphite-setup (raising Tessl workflow_clarity 2->3) and make the CI-optimization sketch point to Graphite's official action instead of a bare placeholder. Trim generic framing from the graphite skill's intro. * feat(graphite): add Tessl plugin manifest for registry publishing * fix(skills): slugify skill names for Tessl compatibility Tessl requires skill frontmatter name to match ^[a-z0-9]+(-[a-z0-9]+)*$. Rename the display-style names of cubic-review, fetch, and find-plugin to their directory slugs. Invocation id is the directory name and triggering is description-based, so this is display-only. * feat(plugins): add Tessl plugin manifests for registry publishing Add .tessl-plugin/plugin.json to 14 skill plugins (better-auth, claude-md-management, cubic, fetch, java-development, markitdown, mastra, mcp-dev, nuxt-i18n, please-plugins, portone, zod, web-design, google-workspace) so they publish to the pleaseai Tessl workspace. * docs: add tessl registry badges and marketplace entries for published plugins Mirror PR #196's badge treatment for the 15 newly published plugins: - Add the tessl badge to graphite/java-development/portone READMEs and scaffold badged READMEs for the 12 that lacked one. - Badge the 8 existing root README entries and add 7 new entries (graphite, claude-md-management, fetch, java-development, nuxt-i18n, portone, google-workspace) plus their install commands. * ci(tessl): widen review and publish workflows to all published plugins Key both workflows off the presence of .tessl-plugin/plugin.json instead of hardcoding bun. Publish resolves the plugin from the release-please component tag (*-v*) and no-ops when the component has no Tessl manifest. Review detects changed published plugins in the PR and fans out over them via a matrix. * chore(release-please): track all runtime manifests for published plugins Add .tessl-plugin/plugin.json (and codex/root manifests) to extra-files for the 16 plugins published to Tessl, and create entries for the 5 that lacked one (claude-md-management, cubic, fetch, java-development, mcp-dev). Keeps every runtime manifest version in sync on release so the <component>-v* tag publishes the correct version. * chore: apply AI code review suggestions - claude-md-management Tessl manifest: replace author email with url (https://github.com/anthropics), per external-project author convention. - java-development README: revert the tessl badge to preserve the byte-identical awesome-copilot upstream import. * fix(ci): use repo root as Tessl skill-review path The tesslio/skill-review action scans the PR diff for changed SKILL.md files as repo-relative paths and resolves them under the `path` input, so a sub-directory path double-prefixes (plugins/graphite/plugins/cubic/...) and fails. Run a single job with path '.' — the action already covers every changed skill across all plugins, so the detect+matrix is dropped.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Docs-only change adding the tessl registry badge to the bun plugin and registering it in the root marketplace listing.
Changes
plugins/bun/README.md: added the tessl badge under the titleREADME.md(root): added a Bun entry to the Built-in Plugins section (with tessl badge, description, install command, source link) and added/plugin install bun@pleaseaito the install-commands listNotes
Summary by cubic
Adds the tessl registry badge to the
bunplugin and listsbunin the root marketplace to improve discoverability and show version status. Also updates install commands to include/plugin install bun@pleaseai(plusportlessandzod).Written for commit 0e7d81c. Summary will update on new commits.