Skip to main content
blockscout
GitHub 创作者资料

blockscout

按仓库查看 5 个 GitHub 仓库中的 98 个已收集 skills。

已收集 skills
98
仓库
5
更新
2026年9月9日
仓库浏览

仓库与代表性 skills

research-scope
软件开发工程师

Investigate the intended scope of a codebase topic through discussion with a human, propose a research-note outline, and only create a .memory-bank/research file after explicit human confirmation.

2026年8月25日
implementation-plan
软件开发工程师

Turn an approved task analysis and selected solution into a technical design and coding-ready handoff under `tmp/tasks/<task-name>/`, with explicit human confirmation before the coding task is written.

2026年8月10日
pr-description
软件开发工程师

Draft or refresh a reviewer-facing Markdown PR description from `tmp/tasks/<task-name>/` and the current implementation snapshot, covering functional scope, API/config, migration, testing, and follow-ups.

2026年8月10日
research-scope
软件开发工程师

Investigate and clarify a reusable codebase topic through dialogue, then create or update a `.memory-bank/research` note only after explicit human confirmation.

2026年8月10日
solution-review
软件开发工程师

Review applied changes against the original task and artifacts under `tmp/tasks/<task-name>/`, identify scope mismatches, regressions, and verification gaps, and write a review before handoff or merge.

2026年8月10日
task-analysis
软件开发工程师

Analyze a non-trivial task against the current codebase, persist task framing and viable solutions under `tmp/tasks/<task-name>/`, align tradeoff criteria with a human, and recommend a path.

2026年8月10日
task-to-code
软件开发工程师

Implement a prepared `tmp/tasks/<task-name>/coding-task-X.md` exactly, validating the result without inventing missing scope or design decisions.

2026年8月10日
implementation-plan
软件开发工程师

Turn an approved task analysis and selected solution into a technical design and coding-ready handoff under `tmp/tasks/<task-name>/`, with explicit human confirmation before the coding task is written.

2026年8月10日
已展示 8 / 40 个已收集 Skill。
add-env-var
未分类

Step-by-step checklist for adding a new NEXT_PUBLIC_* environment variable. Use when introducing any new runtime env var.

2026年9月9日
finalize-task
未分类

Land a finished product task — prune the working files (keep spec.md), then finalize the draft PR into ready-for-review.

2026年9月8日
resolve-review
未分类

Close out review findings — adjudicate each one, fix what deserves fixing, then reply on the PR threads or in the task's review file.

2026年9月8日
review-changes
未分类

Review a change on three axes — spec compliance, repo standards, correctness — then publish the findings as inline PR comments or into a review file in the task folder.

2026年9月8日
add-new-page
软件开发工程师

Scaffold a new page (index / detail / general) and optionally wire it to API data. Use when adding any new route to the app, or when wiring API data into an already-scaffolded page (one with `TODO (api-data):` markers).

2026年8月31日
resolve-config-request
网络与计算机系统管理员

Turn a Slack request into the exact env vars to set on a live instance, and hand them to DevOps.

2026年8月27日
slack-watch
软件开发工程师

Watch Slack threads (DMs and channels) for new replies over a Socket Mode WebSocket, printing one line per genuinely-new reply. Use to be notified inside a live local Claude Code or Cursor session (not a cloud agent).

2026年8月27日
grill-the-task
项目管理专家

Grill a product task (GitHub issue) into implementable work.

2026年8月25日
已展示 8 / 23 个已收集 Skill。
export-plan-review-comments
软件开发工程师

Export the survived comments from a completed implementation-plan review into a timestamped Markdown findings artifact. Use when the user asks to save, write, or export plan-review comments/findings under…

2026年7月25日
implementation-plan-review
软件质量保证分析师与测试员

Expert review of an implementation plan against a GitHub issue/enhancement description (provided as a local file or a GitHub issue URL) and the current repository codebase. Use when asked to critique a plan for correctness, completeness, codebase alignment,…

2026年7月25日
review-plan-findings-feedback
软件质量保证分析师与测试员

Manually review a feedback file produced after implementation-plan review findings were addressed. Use when the user asks to verify that plan changes correctly close, correctly reject, or fail to close the original findings, while checking for newly…

2026年7月25日
address-plan-findings
软件开发工程师

Validate review findings about an implementation plan against the codebase and repo rules, fix the valid ones in the plan, and write a feedback file noting what changed and what was rejected (and why). For plan-review findings, not code-review findings.

2026年7月16日
sepolia-foundry-tx
软件开发工程师

Use this skill whenever the agent needs to deploy a smart contract to Sepolia testnet via Foundry (`forge create` or `forge script --broadcast`), routed through the Blockscout PRO API's JSON-RPC gateway instead of a third-party RPC provider. Trigger on…

2026年7月16日
address-code-review-comments
软件质量保证分析师与测试员

Enter the worktree of a GitHub PR, validate the code-review comments raised on it against what the code actually does and the repo rules, fix the valid ones directly in the PR's source/tests, and report in chat — a brief note per closed comment and a detailed…

2026年6月19日
consult-spec
软件开发工程师

TRIGGER CONDITIONS - invoke this skill when ANY of these apply: User-triggered (explicit request): - User mentions "specification", "SPEC", "SPEC.md", "spec requirements" - User asks to "verify with spec", "confirm with specification", "check requirements" -…

2026年6月19日
describe-changes
软件开发工程师

Describe very high level changes required to implement discussed functionality (functionality, test, docs)

2026年6月19日
已展示 8 / 18 个已收集 Skill。
openapi-spec
软件开发工程师

Create, adjust, or inspect OpenAPI declarations for Blockscout API v2 endpoints. Use this skill whenever the user asks to: add an OpenAPI spec to an endpoint that lacks one, update a spec after controller/view changes, audit or fix an existing OpenAPI…

2026年5月8日
elixir-clause-grouping
软件开发工程师

Use when refactoring Elixir multi-clause functions, extracting helper functions, or fixing Credo readability warnings caused by placing `defp` helpers between clauses of the same function. Keeps function clauses contiguous and moves helpers below the full…

2026年4月9日
update-common-blockscout-env
软件开发工程师

Ensure every newly introduced environment variable is also added to docker-compose/envs/common-blockscout.env so local Docker setups stay aligned with runtime configuration.

2026年4月7日
with-to-case-refactor
软件开发工程师

Replace `with` expressions that contain only a single `<-` clause and an `else` branch with a `case` expression. This addresses the Credo warning "with contains only one <- clause and an else branch, consider using case instead" and produces cleaner, more…

2026年4月6日
elixir-credo-predicate-naming
软件开发工程师

Use when working on Elixir code with Credo predicate naming warnings, boolean helper functions, or renaming functions that start with is_. Prevents violations like: Predicate function names should not start with 'is' and should end in a question mark.

2026年3月10日
alias-nested-modules
软件开发工程师

Define module aliases at the top of the file instead of using fully qualified nested module names in function bodies. Improves code readability and maintainability while addressing Credo style warnings.

2026年3月6日
alphabetically-ordered-aliases
软件开发工程师

Ensure that aliases are alphabetically ordered within their groups to maintain consistent code style and address Credo readability warnings.

2026年3月6日
code-formatting
软件开发工程师

Fixes code formatting in the Blockscout Elixir project using mix format. Use when you need to fix formatting violations, code style inconsistencies, or ensure consistent code formatting. For linting issues, use `mix credo`. Use this skill for every change…

2026年3月6日
已展示 8 / 13 个已收集 Skill。
已展示 5 / 5 个仓库
已展示全部仓库