Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

fabric

fabric 收录了来自 microbus-io 的 32 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
32
Stars
171
更新
2026-07-07
Forks
5
职业覆盖
1 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

upgrade-microbus
软件开发工程师

TRIGGER when the user asks to upgrade the project to a newer or the latest version of Microbus, or to update the framework. Each Microbus release ships this one self-contained skill; it applies that release's single-version migration, then chains to the next release's copy of this skill until the target version is reached.

2026-07-07
add-microservice
软件开发工程师

TRIGGER when user asks to create, scaffold, or initialize a new microservice.

2026-07-06
name-microservice
软件开发工程师

How to choose the hostname of a new Microbus microservice. Referenced by the add-microservice and add-sql-microservice scaffolding skills (and, through their delegation to add-microservice, by add-python-microservice and import-openapi-microservice). Consult it whenever a microservice's hostname is being chosen.

2026-07-06
review-architecture
软件开发工程师

Performs an architectural review of a microservice-based system built on the Microbus framework. Covers only cross-cutting, cross-microservice concerns - service boundaries, the dependency graph, coupling, cross-service consistency, data ownership, workflow composition, edge security, and system operations. Anything judgeable inside a single microservice directory belongs to the review-microservice skill and is out of scope here. Produces a structured report with findings and recommendations.

2026-07-06
review-changes
软件开发工程师

Reviews the microservices touched by a set of changes - by default the whole current feature branch versus its merge-base with main, plus any uncommitted work. Runs the review-microservice skill on each changed microservice and the review-architecture skill scoped to those microservices and their graph neighbors, then consolidates one report. Use before merging a branch or before committing working-tree changes.

2026-07-06
review-microservice
软件开发工程师

Performs a thorough review of a single Microbus microservice. Checks for completeness, framework compliance, code quality, security, test coverage, documentation, API design, and data access performance. Produces a structured report with findings and recommendations.

2026-07-06
add-sql-microservice
软件开发工程师

TRIGGER when user asks to create a CRUD microservice, database-backed service, or a service to persist/store objects in SQL (MySQL, Postgres, MSSQL).

2026-07-06
take-tour
软件开发工程师

Runs the agent-guided tour of Microbus using examples. Use when the user asks to take the tour.

2026-07-05
add-config
软件开发工程师

TRIGGER when user asks to add or modify a configuration property or setting, or to make a value configurable.

2026-07-03
add-function
软件开发工程师

TRIGGER when user asks to add, create, or modify an API endpoint, function, or RPC, or a route that accepts typed arguments and returns typed results.

2026-07-03
add-inbound-event
软件开发工程师

TRIGGER when user asks to listen for, subscribe to, or handle an event emitted by another microservice.

2026-07-03
add-metric
软件开发工程师

TRIGGER when user asks to add or modify a metric, counter, gauge, or histogram, or to track/measure an operation.

2026-07-03
add-outbound-event
软件开发工程师

TRIGGER when user asks to fire, emit, or publish an event that other microservices can subscribe to.

2026-07-03
add-task
软件开发工程师

TRIGGER when user asks to add a workflow step, agent step, agentic task, task endpoint, or workflow phase. "Agent step" and "workflow step" are interchangeable - a task is a single step of a workflow / agent, whether or not the surrounding workflow calls an LLM.

2026-07-03
add-ticker
软件开发工程师

TRIGGER when user asks to add a recurring job, periodic task, scheduled operation, or ticker.

2026-07-03
add-web
软件开发工程师

TRIGGER when user asks to add or modify a web handler, HTML page, file download, or raw HTTP endpoint that works with http.ResponseWriter/http.Request.

2026-07-03
add-workflow
软件开发工程师

TRIGGER when user asks to define a workflow graph, create an agent or agentic workflow, orchestrate tasks, or build a multi-step process. "Agent", "agentic workflow", and "workflow" are interchangeable here - an LLM is not required for a workflow to be an agent (rule-based, deterministic, and LLM-driven workflows are all agents).

2026-07-03
import-openapi-microservice
软件开发工程师

TRIGGER when the user asks to delegate to or integrate an external/third-party REST API, import an OpenAPI/Swagger document, or generate a microservice from an OpenAPI spec (by URL or pasted JSON/YAML). Produces a one-for-one delegating microservice and stores openapispecs.json in its directory so more endpoints can be imported later.

2026-07-03
housekeeping
软件开发工程师

Run after completing any change to a microservice to bring its generated files, documentation, version, and topology diagram up to date. Skip if the skill you just followed already ran housekeeping as its final step.

2026-07-03
modify-feature
软件开发工程师

TRIGGER when user asks to change the signature, route, method, arguments, or return type of an existing endpoint, config, metric, or ticker.

2026-07-03
regenerate-boilerplate
软件开发工程师

Use when a microservice's generated files are corrupted, outdated, or need to be rebuilt from scratch.

2026-07-03
remove-feature
软件开发工程师

TRIGGER when user asks to remove, delete, or drop an endpoint, config, metric, ticker, or event from a microservice.

2026-07-03
add-python-function
软件开发工程师

TRIGGER when user asks to add a Python-backed function endpoint to an existing Python-backed microservice.

2026-07-02
add-python-task
软件开发工程师

TRIGGER when user asks to add a Python-backed workflow task to an existing Python-backed microservice.

2026-07-02
init-project
软件开发工程师

TRIGGER when user asks to initialize, set up, or bootstrap a Microbus project. Scaffolds main/main.go, config files, agent files, .gitignore, VS Code launch config, Claude Code permissions, and the token-signing key.

2026-06-30
add-python-microservice
软件开发工程师

TRIGGER when user asks to create a microservice that calls Python, runs ML inference, or uses Python libraries (PyTorch, pandas, sentence-transformers, numpy) for its core compute.

2026-06-19
add-sql-fields
软件开发工程师

TRIGGER when user asks to add fields, properties, or columns to a SQL CRUD microservice's object.

2026-06-19
modify-sql-fields
软件开发工程师

TRIGGER when user asks to change, rename, or retype fields, properties, or columns of a SQL CRUD microservice's object.

2026-06-19
remove-sql-fields
软件开发工程师

TRIGGER when user asks to remove, drop, or delete fields, properties, or columns from a SQL CRUD microservice's object.

2026-06-19
rename-sql-object
软件开发工程师

TRIGGER when user asks to rename the object type or struct used by a SQL CRUD microservice.

2026-06-19
rename-sql-table
软件开发工程师

TRIGGER when user asks to rename the database table used by a SQL CRUD microservice.

2026-06-19
translate-strings
软件开发工程师

TRIGGER when user asks to externalize, internationalize, or translate user-facing strings. Moves hardcoded display text into a text.yaml resource bundle for i18n support.

2026-04-30