jnv is a command-line tool that provides an interactive JSON filter using jq syntax.
The tool addresses the friction of manually constructing jq filters when exploring unfamiliar JSON structures. Rather than requiring users to write complete filter expressions upfront, jnv presents an interactive prompt where users can build and test jq filters incrementally. As users type, the tool evaluates their filter against the input JSON and displays results in real time, allowing them to refine their query through immediate feedback. This interactive approach transforms jq from a write-once tool into an exploratory interface.
jnv suits developers who frequently work with JSON data at the command line, particularly when inspecting API responses, configuration files, or Kubernetes manifests where the structure may not be immediately familiar. The interactive prompt with autocomplete support makes it valuable for learning jq syntax without consulting documentation. It works well in workflows where you need to understand JSON structure before committing to a permanent filter, or when you want to experiment with different filter approaches quickly.
The project shows consistent development activity with regular commits addressing bug fixes and feature refinements. The maintainer responds to issues and pull requests, indicating active stewardship of the codebase. The tool maintains a focused scope around the core interactive filtering experience rather than attempting to extend jq's capabilities themselves.