ソース情報
- リポジトリ
- macro-inc/macro
- ソースの最終更新活動
- 2026年5月27日 19:58
- 検出された SKILL.md の言語
- 英語
- スター
- 3,572
- フォーク
- 358
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/macro-inc/macro --skill dump-schemaコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Wrap a new backend endpoint in the TypeScript SDK (packages/sdk), or record it as skipped. Use when `just coverage` fails, or after adding an endpoint to a Rust service.
Debug local Rust services in this repository by starting the crate's binary with debug logging, tailing service logs, and using those logs to answer runtime questions. Use when Codex needs to investigate service startup, runtime behavior, errors, or logs for a Rust binary in a crate.
Validate Rust work after substantial Rust code changes by running `just check`, `just clippy`, then `just format`. Use before the final response after a significant Rust implementation or cleanup task; batch edits first instead of running after every small change.
SOC 職業分類に基づく
SKILL.md を表示中
| name | dump-schema |
| description | Dump clean Postgres schema to a file and copy path to clipboard. |
| allowed-tools | Bash |
Dump a clean PostgreSQL schema (no comments, no ownership, no privileges) from the local dev database.
Ask the user (if not provided):
.sql file (default: prompt user)Use this database URL unless the user specifies otherwise:
postgres://user:password@localhost:5432/macrodb
pg_dump with schema-only flags, pipe through cleanup, write to file:pg_dump --schema-only --no-owner --no-privileges --no-comments --no-publications --no-subscriptions --no-security-labels --no-tablespaces "$DB_URL" | sed '/^--/d' | sed '/^SET /d' | sed '/^SELECT pg_catalog/d' | sed '/^$/N;/^\n$/d' > "$OUTPUT_FILE"
echo -n "$OUTPUT_FILE" | pbcopy
Schema dumped to <path> (path copied to clipboard)