Skip to main content
Execute qualquer Skill no Manus
com um clique
$pwd:
BlackBeltTechnology
GitHub creator profile

BlackBeltTechnology

Repository-level view of 58 collected skills across 5 GitHub repositories, including approximate occupation coverage.

skills collected
58
repositories
5
occupation fields
3
updated
2026-05-31
repository explorer

Repositories and representative skills

#001
judo-runtime-core
28 skills00updated 2026-03-10
48% of creator
judo-runtimeauthentication-flow
Desenvolvedores de software

Comprehensive guide to the JUDO authentication pipeline. Use when you need to understand how authentication works, debug auth issues, configure OAuth2/OpenID Connect, or integrate with identity providers like Keycloak.

2026-03-10
judo-runtimetestkit
Analistas de garantia de qualidade de software e testadores

Help write tests for JUDO applications using judo-runtime-core-guice-testkit. Use when writing interceptor tests, setting up JudoRuntimeFixture, or troubleshooting testkit issues.

2026-01-28
judo-runtimeadd-module-skills
Desenvolvedores de software

Add Claude skill packages and agent-docs to a JUDO Runtime Core module. Use when making a module self-contained with embedded documentation, creating skills for interceptors/extensions, or packaging agent docs in JARs.

2026-01-28
judo-runtimeaccess-api-overview
Desenvolvedores de software

Comprehensive guide to JUDO Access Manager API interfaces. Use when you need to understand operation authorization, implement custom authentication interceptors, work with signed identifiers, or integrate access control into your application.

2026-01-28
judo-runtimeaccess-control
Desenvolvedores de software

Comprehensive guide to configuring access control rules in JUDO Runtime. Use when you need to understand actor-based authorization, configure public vs authenticated access, set up exposedBy annotations, or implement custom authentication interceptors.

2026-01-28
judo-runtimepermission-checking
Desenvolvedores de software

Detailed guide to the JUDO permission checking flow for CRUD operations. Use when you need to understand how CREATE, UPDATE, DELETE permissions work, debug authorization failures, or implement custom authorizers.

2026-01-28
judo-runtimedao-patterns
Arquitetos de banco de dados

Understand JUDO DAO Core interface patterns including payload processors, statement types, instance collectors, and validation. Use when working with data access operations, implementing custom processors, or understanding the DAO architecture.

2026-01-28
judo-runtimeentity-mapping
Desenvolvedores de software

Entity to transfer object mapping in JUDO DAO Core. Use when working with value objects, understanding attribute/reference mapping, measure unit conversion, or implementing custom value handling.

2026-01-28
Showing top 8 of 28 collected skills in this repository.
#002
pi-agent-dashboard
15 skills13315updated 2026-05-31
26% of creator
release-cut
Desenvolvedores de software

Cut a new pi-agent-dashboard release. Promotes `## [Unreleased]` in CHANGELOG.md to a versioned section, bumps all workspace package.json versions per SemVer, commits, tags `v<version>`, and pushes — which triggers the Release workflow that publishes **5 npm packages** (root + shared/extension/server/web via `npm publish -ws --include-workspace-root`) and the Electron artifacts and creates a draft GitHub Release. Use when the user says "cut a release", "release vX.Y.Z", "publish a new version", "tag a release".

2026-05-31
jj-workspace
Desenvolvedores de software

Operating manual for agents working inside a Jujutsu (jj) workspace. Read this when your cwd is under a `.shadow/<name>/` directory or any other `jj workspace add` target. Lists safe vs. forbidden commands in colocated jj+git repos, the basic working-copy mental model, and how to describe and ship work back to trunk via the `jj-workspace-fold-back` skill. Use when: working in any jj workspace, before running `git` commands in a jj-managed cwd, when reviewing or describing changes, when conflicts appear, when asked to commit/push/merge in a jj repo.

2026-05-28
browser
Desenvolvedores de software

Browser automation via the `agent-browser` CLI. Use when the user needs to interact with websites or Electron desktop apps — navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, automating browser actions, visual UI verification, responsive checks, hunting console errors, or driving the Pi Dashboard's Electron shell (main window, wizard window, doctor window, tray, native menus). Triggers include "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data", "test this web app", "automate browser", "test responsive", "debug blank page", "automate Slack app", "control VS Code", "attach to Electron app", "screenshot Pi Dashboard", "drive the wizard window".

2026-05-28
debug-dashboard
Administradores de redes e sistemas de computador

Diagnose problems in the running pi-agent-dashboard system. Tail ~/.pi/dashboard/server.log, probe /api/health for mode + uptime, check bridge WebSocket connectivity, triage vitest failures via tee→grep, inspect known-issue FAQ entries (Electron Node bin selection, Fastify + bad-Node crashes, stale-port hangs, single-instance lock). Routes UI/visual issues to the browser skill. Use when the server seems hung, a pi session won't connect, tests fail mysteriously, the dashboard shows a blank page, restart loops, port conflicts, or any "why isn't X working" / "the dashboard is doing Y" question.

2026-05-28
ci-troubleshoot
Desenvolvedores de software

Diagnose failed GitHub Actions runs for pi-agent-dashboard. Maps the 6-workflow taxonomy (ci.yml, ci-electron.yml, _electron-build.yml, publish.yml, sync-release-version.yml, deploy-site.yml), walks the release pipeline (prepare→publish→electron→github-release with strict needs[] contract), surfaces known failure modes (lockfile mismatch, bad Node version, CHANGELOG already-versioned, npm publish ordering, no-bash-on-Windows lint, missing node-pty prebuilds, GO/NO-GO bundle-server guard), and shows how to read `gh run` logs and retrigger failed jobs. Use when a CI run is red, a release is stuck, a workflow won't dispatch, or you need to understand which workflow does what. For triggering a release see `release-cut`; for revoking one see `release-revoke`.

2026-05-25
implement
Desenvolvedores de software

Disciplined implementation in pi-agent-dashboard. Pairs (a) the 3-component rebuild matrix — extension→reload, server→restart, client→build+restart, openspec-apply→full rebuild — with (b) the project's code discipline rules (TDD, simplicity-first, surgical changes). Use when starting to write code, after editing src/extension|src/server|src/client, when unsure what to rebuild after a change, or before committing. Loads on triggers like "I changed the bridge", "rebuild and restart", "implement X", "after edit", "TDD this", "how do I land this change". Skip for trivial edits.

2026-05-25
jj-uncommit-to-working-copy
Desenvolvedores de software

In a jj-colocated git repo, take a jj commit (default `@-`, the parent of the working copy) and fold its changes into the working copy as undescribed changes — equivalent to "uncommitting" so they re-appear as unstaged changes in `git status`. NEVER calls `git reset`, `git checkout`, or any other mutating git command. Use when: the user says "uncommit", "put changes back as unstaged", "undo last jj commit", "move commit into working copy", "unstage from jj", or has a described jj commit they want to re-stage / re-split / amend differently.

2026-05-10
dashboard-plugin-scaffold
Desenvolvedores de software

Scaffold a new pi-dashboard plugin in the dashboard monorepo, OR augment an existing pi-extension project on disk with dashboard plugin contributions. Hybrid skill: a single ask_user batch up front, then prescriptive steps the agent follows. Use when the user asks to "create a dashboard plugin", "add dashboard support to my extension", "scaffold a plugin", or similar.

2026-05-03
Showing top 8 of 15 collected skills in this repository.
#003
pi-judo
12 skills00updated 2026-04-26
21% of creator
judo-frontend-esm-to-ui-docs
Redatores técnicos

ESM-to-UI mapping reference for JUDO React frontends. Covers widget mappings, table and navigation element mappings, and the ESM→UI transformation model.

2026-04-26
judo-frontend-docs
Desenvolvedores de software

Frontend development guide for JUDO React applications. Covers hooks, theming, i18n, and Pandino DI customization patterns.

2026-04-26
judo-model-esm-metamodel-docs
Redatores técnicos

ESM metamodel reference for JUDO. Covers namespace, type, structure, operation, accesspoint, UI, UI-behaviour, and UI-visual-styleguide packages with element-level attribute and constraint definitions.

2026-04-26
judo-model-docs
Arquitetos de banco de dados

Model documentation for JUDO applications. Covers ESM metamodel, cardinality, CRUD flags, and advanced modeling patterns.

2026-04-26
judo-backend-docs
Desenvolvedores de software

Backend development guide for JUDO applications. Covers custom operations, interceptors, validators, data access, and error handling.

2026-04-26
judo-deployment-docs
Desenvolvedores de software

Deployment and build documentation for JUDO applications. Covers judo.sh commands, Docker setup, Karaf configuration, and production deployment.

2026-04-26
judo-e2e-testing-docs
Analistas de garantia de qualidade de software e testadores

E2E testing guide for JUDO React frontends using Playwright. Covers test patterns, helpers, and browser automation.

2026-04-26
judo-frontend-hooks-docs
Desenvolvedores de software

Frontend hook system documentation. Covers data, UI, table, action, navigation, and validation hooks.

2026-04-26
Showing top 8 of 12 collected skills in this repository.
#004
pi-anthropic-messages
2 skills21updated 2026-05-16
3.4% of creator
Mostrando 5 de 5 repositorios
Todos os repositorios foram exibidos