Best for
- The user names this skill directly:
- “用 requirement-to-mr 做这个需求”
- “按 requirement-to-mr 流程执行”
hua-bang/pulse-agent/apps/remote-server/.pulse-coder/skills/requirement-to-mr/SKILL.md
Explicitly authorized workflow that converts a requirement into an implemented change, validation evidence, commit, push, and MR for this Pulse Coder project.
Decision brief
This skill turns a short product/engineering request into a reviewable MR with minimal back-and-forth. It is optimized for the current Pulse Coder TypeScript pnpm monorepo.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/hua-bang/pulse-agent --skill "apps/remote-server/.pulse-coder/skills/requirement-to-mr"Inspect the Agent Skill "requirement-to-mr" from https://github.com/hua-bang/pulse-agent/blob/8245c14cdee086f38128a0e4a39ccff702014ab0/apps/remote-server/.pulse-coder/skills/requirement-to-mr/SKILL.md at commit 8245c14cdee086f38128a0e4a39ccff702014ab0. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
For multi-step work, use task tracking:
Diff matches the requirement.
Use this skill only when the user explicitly authorizes an end-to-end implementation workflow that includes commit/push/MR or PR creation.
Do not trigger this skill merely because the user asks to implement, support, inspect, or plan something.
Default behavior after valid trigger: one-time authorization, then autonomous execution.
Permission review
The documentation asks the agent to read local files, directories, or repositories.
| Skills only | `.pulse-coder/skills/<name>/SKILL.md` | Check frontmatter and read generated file |The documentation asks the agent to run terminal commands or scripts.
git status --shortThe documentation asks the agent to run terminal commands or scripts.
git branch --show-currentThe documentation asks the agent to read local files, directories, or repositories.
| Skill/docs only | Read generated file; verify YAML frontmatter has `name` and `description` |Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 92/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 28 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
This skill turns a short product/engineering request into a reviewable MR with minimal back-and-forth. It is optimized for the current Pulse Coder TypeScript pnpm monorepo.
Use this skill only when the user explicitly authorizes an end-to-end implementation workflow that includes commit/push/MR or PR creation.
Valid triggers include one of these patterns:
The trigger must include either:
Do not trigger this skill merely because the user asks to implement, support, inspect, or plan something.
Examples that should not trigger this skill by themselves:
For those cases, use ordinary coding flow, project-roadmap, refactor, or code-review as appropriate. Ask for explicit MR/PR handoff authorization before committing, pushing, or creating an MR.
Default behavior after valid trigger: one-time authorization, then autonomous execution.
The user should not need to confirm every step. Once the skill is explicitly triggered, proceed directly from requirement intake to implementation, validation, commit, push, and MR creation, unless a hard stop condition is met.
Ask at most one clarification question before starting, and only when the answer materially changes the implementation.
If the requirement is understandable but incomplete, proceed with explicit assumptions instead of asking.
Pause and ask for confirmation when any of these are true:
git status --short shows existing changes that are unrelated to this task and the user did not say they are yours.When blocked, report:
Blocked: <reason>
Minimum decision needed: <one concrete question or action>
Safe next option: <what can be done without the decision>
Treat the repository as a TypeScript pnpm monorepo:
| Area | Default investigation path | Validation |
|---|---|---|
| Engine loop/tools/plugins | packages/engine/src/ | pnpm --filter pulse-coder-engine test; pnpm --filter pulse-coder-engine typecheck |
| CLI | packages/cli/src/ | pnpm --filter pulse-coder-cli test; pnpm --filter pulse-coder-cli build |
| Sandbox | packages/cli/src/tools/sandbox/ | pnpm --filter pulse-coder-cli test |
| Memory | packages/plugin-kit/src/memory/ | pnpm --filter pulse-coder-plugin-kit test |
| Remote server | apps/remote-server/src/ | pnpm --filter @pulse-coder/remote-server build |
| Skills only | .pulse-coder/skills/<name>/SKILL.md | Check frontmatter and read generated file |
| Cross-package | Relevant package checks first | pnpm run build as final gate if practical |
Use repository conventions:
PascalCase for classes/types, camelCase for functions/vars, kebab-case filenames.For multi-step work, use task tracking:
in_progress.Always run:
pwd
git status --short
git branch --show-current
git remote -v
Rules:
Create a short internal brief before editing:
Requirement brief:
- Goal:
- User-visible behavior:
- Likely area/package:
- Non-goals:
- Assumptions:
- Acceptance checks:
Keep it concise. Do not ask the user to approve the brief unless a hard stop condition applies.
Use the smallest safe path:
| Scope | Examples | Default behavior |
|---|---|---|
| XS | docs, skill, config, small bug fix | Implement directly |
| S | one package, limited tests | Implement directly |
| M | multiple files/packages, clear interfaces | Implement in one focused MR if still reviewable |
| L | architecture change, migration, unclear behavior | Plan first; ask one decision question if needed |
Prefer an MR-sized slice over a broad rewrite. If the request is large, implement the smallest valuable slice and document follow-ups.
Before editing, inspect the current branch.
main or master, create a new branch.Branch naming:
feat/<short-kebab-goal>
fix/<short-kebab-bug>
docs/<short-kebab-topic>
chore/<short-kebab-maintenance>
If the branch-naming skill is available and naming is non-trivial, use it.
Read only files needed for the requirement.
Recommended sequence:
dist/, node_modules/, local session stores, and private memory data.Implementation rules:
Run the narrowest useful validation first, then broader checks only when justified.
Validation decision table:
| Change type | Minimum validation |
|---|---|
| Skill/docs only | Read generated file; verify YAML frontmatter has name and description |
| Unit behavior | Related package test or focused Vitest test |
| Type/interface change | Related package typecheck/build |
| Remote server behavior | pnpm --filter @pulse-coder/remote-server build plus relevant tests if present |
| Cross-package behavior | Targeted package checks, then pnpm run build if practical |
If validation fails:
Run:
git diff --stat
git diff -- <relevant paths>
Check:
Use the existing git-workflow and mr-generator skills when available.
Default sequence:
git status --short
git add -A
git commit -m "<type>: <short summary>"
git push -u origin HEAD
Commit message rules:
feat, fix, docs, test, refactor, chore.After a successful push:
mr-generator by default.Expected MR body:
## Summary
- <change 1>
- <change 2>
## Validation
- `<command>` ✅ / ⚠️ <result>
## Risk
- <main risk or "Low; scoped change">
Keep the final response short and execution-oriented:
已完成:<one-line outcome>
MR: <url or creation status>
Commit: <sha or branch>
验证:
- `<command>`: <result>
备注:
- <assumption, skipped check, or follow-up if any>
If no MR was created:
代码已完成但 MR 未创建。
原因:<reason>
下一步:<exact command or decision needed>
When the user gives only a short requirement after a valid trigger, infer using these rules:
Use one of these only when needed:
我可以继续,但有一个会影响实现范围的问题:<question>
如果你不补充,我将按这个默认假设执行:<assumption>。
当前工作区已有未提交改动,可能不是本任务产生的。请确认:
A. 我可以一起纳入本次 MR
B. 我只改新需求相关文件
C. 先停止,等你处理工作区
This skill is complete when all are true:
Frequently asked questions
This skill turns a short product/engineering request into a reviewable MR with minimal back-and-forth. It is optimized for the current Pulse Coder TypeScript pnpm monorepo.
The source record exposes this install command: npx skills add https://github.com/hua-bang/pulse-agent --skill "apps/remote-server/.pulse-coder/skills/requirement-to-mr". Inspect the command and pinned source before running it.
Static rules flagged read-files, exec-script in the source; the page lists the matching lines and excerpts.
Alternatives
garrytan/gbrain
End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.
prowler-cloud/prowler
PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance