一键导入
makefile-update
Makefile development workflow. Use when modifying Makefile or files in make/ directory.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Makefile development workflow. Use when modifying Makefile or files in make/ directory.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Set up docs-ssot SSOT documentation structure — migrate existing docs, build, and validate
Documentation update workflow. Use when modifying files in docs/ directory or any markdown files (*.md).
Maps GitHub labels to Skills and Context documents. Use when creating issues (github-issue-creation) or working on issues (fix-issue command).
How to run watch, keygen, and sign wallet CLI commands. Use when executing wallet commands or testing wallet functionality.
Git branch management, commit conventions, and PR creation workflow. Use for all tasks that require code changes, regardless of language or scope.
Solidity smart contract development workflow. Use when modifying smart contracts in apps/eth-contracts/contracts/.
| name | makefile-update |
| description | Makefile development workflow. Use when modifying Makefile or files in make/ directory. |
Workflow for Makefile changes.
Use git-workflow Skill for branch, commit, and PR workflow.
| Path | Description |
|---|---|
Makefile | Main makefile |
make/*.mk | Included makefiles |
Makefile # Main entry point, includes make/*.mk
make/
├── go.mk # Go-related targets
├── docker.mk # Docker targets
├── atlas.mk # Database migration targets
├── sqlc.mk # SQLC generation targets
└── ...
make mk-lint # Lint makefiles
# List all targets
make help
# Dry run (if supported)
make -n {target}
.PHONY for non-file targets.PHONY if not creating files?= for defaults.PHONY: my-target
my-target: ## Description of target
@echo "Running my-target..."
command1
command2
make mk-lint passeschore(make): {brief description}
- {change 1}
- {change 2}
Closes #{issue_number}
git-workflow - Branch, commit, PR workflow