ワンクリックで
git-query-tools
// git_history and json_query tools for structured git log exploration and jq-style JSON querying.
// git_history and json_query tools for structured git log exploration and jq-style JSON querying.
Use the stealth browser for human-like web automation against bot-protected sites. Handles login flows, scraping, and form filling with anti-detection bypass.
Export a chat timeline to a PDF using the internal localhost export endpoint and wkhtmltopdf.
Nightly Bayesian interaction-quality classifier — flags behavioral patterns from chat history and writes self-improvement reflections without spending model tokens on classification.
Record major friction or postmortem feedback in the configured workspace vent log.
Open a spreadsheet-style widget for a Markdown table so the user can edit it and send the final Markdown table back into chat.
Use `code_search` and `code_rewrite` for syntax-aware code search and refactors when structure matters.
| name | git-query-tools |
| description | git_history and json_query tools for structured git log exploration and jq-style JSON querying. |
| distribution | public |
Two workspace tools for structured data queries.
Prefer over raw git log commands. Returns structured JSON with truncation.
git_history({ mode: "log", limit: 10 }) # recent commits
git_history({ mode: "search", query: "fix bug" }) # search commit messages
git_history({ mode: "code-search", query: "TODO" }) # search code history
git_history({ mode: "blame", file: "path/to/file" }) # file blame
Prefer over shell jq piping. Validates expressions and returns structured output.
json_query({ file: "data.json", query: ".items[] | .name" })
json_query({ input: '{"a":1}', query: ".a" })