Skip to main content
在 Manus 中运行任何 Skill
一键导入
$pwd:
BlackBeltTechnology
GitHub 创作者资料

BlackBeltTechnology

按仓库查看 5 个 GitHub 仓库中的 58 个已收集 skills,并展示近似职业覆盖。

已收集 skills
58
仓库
5
职业领域
3
更新
2026-05-31
仓库浏览

仓库与代表性 skills

#001
judo-runtime-core
28 个 skills00更新于 2026-03-10
占该创作者 48%
judo-runtimeauthentication-flow
软件开发工程师

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
软件质量保证分析师与测试员

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
数据库架构师

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
软件开发工程师

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
当前展示该仓库 Top 8 / 28 个已收集 skills。
#002
pi-agent-dashboard
15 个 skills13315更新于 2026-05-31
占该创作者 26%
release-cut
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
网络与计算机系统管理员

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
当前展示该仓库 Top 8 / 15 个已收集 skills。
#003
pi-judo
12 个 skills00更新于 2026-04-26
占该创作者 21%
judo-frontend-esm-to-ui-docs
技术写作员

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
软件开发工程师

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

2026-04-26
judo-model-esm-metamodel-docs
技术写作员

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
数据库架构师

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

2026-04-26
judo-backend-docs
软件开发工程师

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

2026-04-26
judo-deployment-docs
软件开发工程师

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
软件质量保证分析师与测试员

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

2026-04-26
judo-frontend-hooks-docs
软件开发工程师

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

2026-04-26
当前展示该仓库 Top 8 / 12 个已收集 skills。
#004
pi-anthropic-messages
2 个 skills21更新于 2026-05-16
占该创作者 3.4%
已展示 5 / 5 个仓库
已展示全部仓库
BlackBeltTechnology GitHub Skills | SkillsMP