ソース情報
- リポジトリ
- nudgebee/nudgebee
- ソースの最終更新活動
- 2026年7月4日 10:23
- 検出された SKILL.md の言語
- 英語
- スター
- 387
- フォーク
- 262
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/nudgebee/nudgebee --skill commitコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Create GitHub issues using repo templates (feature, bug, spike)
Adversarial pre-implementation pass — argue against a proposed plan before writing code, and emit a binding PROCEED / REVISE / REDESIGN verdict
Pre-commit cross-check — spawn an isolated, fresh-context critic to review the working diff for correctness, grounded in a real build/test run. The fast per-commit gate that feeds fewer issues into /code-review and /ship.
SOC 職業分類に基づく
SKILL.md を表示中
| name | commit |
| description | Smart commit — detect affected services, run validation, commit with proper format |
Create a validated commit with proper service-scoped message format. Optional argument: $ARGUMENTS (commit message override).
# Staged changes
git diff --cached --name-only
# Unstaged changes (for reference)
git diff --name-only
# Untracked files
git ls-files --others --exclude-standard
If nothing is staged, show the user what's unstaged/untracked and ask what to stage.
Map every changed file to its service:
| Path prefix | Service | Type | Validation | Working directory |
|---|---|---|---|---|
api-server/services/ | api-server | Go | make validate | api-server/services/ |
ticket-server/ | ticket-server | Go | make validate | ticket-server/ |
collector-server/cloud-collector/ | cloud-collector | Go | make validate | collector-server/cloud-collector/ |
collector-server/k8s-collector/relay-server/ | relay-server | Go | make validate | collector-server/k8s-collector/relay-server/ |
collector-server/k8s-collector/app/ | k8s-collector-app | Python | make lint && make test | collector-server/k8s-collector/app/ |
llm/code-analysis/ | code-analysis | Go | make check | llm/code-analysis/ |
llm/llm-server/ | llm-server | Go | make validate | llm/llm-server/ |
llm/rag-server/ | rag-server | Python | make lint && make test | llm/rag-server/ |
llm/benchmark/ | benchmark | Python | poetry run pytest | llm/benchmark/ |
ml-k8s-server/ | ml-k8s-server | Python | make lint && make test | ml-k8s-server/ |
auto-pilot/ | auto-pilot | Python | poetry run black --check . && poetry run flake8 . | auto-pilot/ |
auto-pilot/sidecar/ | auto-pilot-sidecar | Python | poetry run black --check . && poetry run flake8 . | auto-pilot/sidecar/ |
notifications-server/ | notifications-server | Python | poetry run black --check . && poetry run flake8 . | notifications-server/ |
app/ | frontend | TypeScript | npm run lint2 | app/ |
deploy/ | infrastructure | — | — | — |
.github/ | ci | — | — | — |
For each affected service, run its validation command. Report results as a table:
| Service | Validation | Status |
|---------|-----------|--------|
| api-server | make validate | PASS/FAIL |
If any validation fails:
If $ARGUMENTS is provided, use it as the commit subject but still prepend the semantic type and scope.
Format: type(scope): subject (per .github/semantic.yml)
Allowed types:
| Type | Use when |
|---|---|
feat | New feature or functionality |
fix | Bug fix |
docs | Documentation only |
style | Formatting, whitespace, no code change |
refactor | Code restructure, no behavior change |
perf | Performance improvement |
test | Adding or updating tests only |
chore | Maintenance, deps, config |
revert | Reverting a previous commit |
ci | CI/CD workflow changes |
infra | Infrastructure, Helm, K8s changes |
release | Release-related changes |
Allowed scopes (required):
| Scope | Services / paths |
|---|---|
ui | app/ (frontend) |
autopilot | auto-pilot/, auto-pilot/sidecar/ |
ml | ml-k8s-server/, llm/code-analysis/, llm/llm-server/, llm/rag-server/, llm/benchmark/ |
notifications | notifications-server/ |
tickets | ticket-server/ |
relay | collector-server/k8s-collector/relay-server/ |
| `collector" | collector-server/cloud-collector/, collector-server/k8s-collector/app/ |
deps | Dependency updates |
NB-xxx | Ticket number — use for api-server/services/, api-server/migrations/, deploy/, .github/, or any cross-service change |
Rules:
fix(ui): handle null pointer in settings pagefeat(NB-1234): add Azure onboarding flowNB-xxx or nb-xxxIf no $ARGUMENTS, analyze the diff to generate an appropriate message. Present the proposed message to the user for confirmation before committing.
Stage files if not already staged (ask user first if there are unstaged changes to include):
git add <specific files>
Commit:
git commit -m "type(scope): subject"
NEVER use git add -A or git add . — always add specific files.
Committed: type(scope): subject
{N} files changed, {A} insertions(+), {D} deletions(-)
Services: {list}
Validation: all passed