ソース情報
- リポジトリ
- robertolupi/deep-cuts
- ソースの最終更新活動
- 2026年5月29日 14:44
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/robertolupi/deep-cuts --skill query-dbコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Experimental protocol for Deep Cuts research, prototypes, model evaluations, threshold tuning, ablations, metric comparisons, and claims about accuracy or quality. Use before running or interpreting experiments so bots preserve train/validation/test boundaries, avoid leakage, compare against baselines, and report results honestly.
Guidelines for creating, updating, reorganizing, and reviewing Deep Cuts documentation in the project wiki, including page taxonomy, lifecycle status, protected pages, proposal handling, and link verification.
Pattern for multi-agent collaboration sessions in the deep-cuts fam — forge-first coordination over the botfam substrate (Gitea issues/PRs as the coordination plane, the unified `botfam wait` wake loop, bare-actor worktrees), with IRC opt-in for design sprints, plus session-log conventions
| name | query-db |
| description | How to locate and query the deep-cuts production SQLite database |
~/Library/Application Support/com.rlupi.deep-cuts/deep_cuts.db
Store it in a shell variable to avoid retyping:
DB="$HOME/Library/Application Support/com.rlupi.deep-cuts/deep_cuts.db"
sqlite3 "$HOME/Library/Application Support/com.rlupi.deep-cuts/deep_cuts.db"
Useful sqlite3 meta-commands:
.tables -- list all tables
.schema tracks -- show CREATE statement for a table
.mode column -- aligned column output
.headers on -- show column names
.quit
SELECT COUNT(*) AS total_tracks,
COUNT(bpm) AS have_bpm,
COUNT(artist) AS have_artist,
COUNT(lyrics) AS have_lyrics
FROM tracks;
-- Find tracks by filename or path fragment
SELECT id, filename, artist, title, bpm, genre
FROM tracks
WHERE path LIKE '%Jazz%'
LIMIT 20;
SELECT * FROM watched_directories;
SELECT * FROM app_settings;
If embedding tables are present (vec0 virtual tables), the sqlite-vec extension must be loaded — it is compiled into the Rust binary and loaded automatically at app startup but is not available to the plain sqlite3 CLI.
The shadow tables are queryable from the CLI without the extension:
SELECT COUNT(*) FROM audio_embeddings_rowids;
.db file before any UPDATE/DELETE — there is no undo.