Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/javimosch/supercli --skill jpコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Use this skill when the user wants to search, create, read, or manage Notion pages and databases — search workspace, query databases, create pages, read/write page content as Markdown, manage blocks, users, and files.
Use this skill when the user wants to chat with LLMs from the terminal — OpenAI, Claude, Gemini, local models, RAG, and multi-turn conversations without leaving the shell.
Use this skill when the user wants static analysis for Kotlin code — detect code smells, complexity, style violations, and generate reports for CI pipelines.
SOC 職業分類に基づく
SKILL.md を表示中
| name | jp |
| description | JMESPath JSON processor |
Query and transform JSON data using JMESPath expressions.
# Query JSON from stdin
echo '{"foo": {"bar": "hello"}}' | sc jp data query --expression "foo.bar"
# Query from file
sc jp data query "foo.bar" data.json
# Passthrough
sc jp _ _ -- --pretty data.json
foo.bar - Nested field accessfoo[*].bar - Project list fieldfoo[?bar==\baz`]` - Filterfoo.{x: bar, y: baz} - Multi-select