{"id":50622072,"url":"https://github.com/ksachdeva/zephyr-kconfig","last_synced_at":"2026-06-06T13:01:36.131Z","repository":{"id":342153566,"uuid":"1135199419","full_name":"ksachdeva/zephyr-kconfig","owner":"ksachdeva","description":"Various tools/helpers/cli to assist with ZephyrOS's KConfig","archived":false,"fork":false,"pushed_at":"2026-03-05T00:20:05.000Z","size":279,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-05T06:28:03.205Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ksachdeva.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-15T19:21:14.000Z","updated_at":"2026-03-05T00:20:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ksachdeva/zephyr-kconfig","commit_stats":null,"previous_names":["ksachdeva/zephyr-kconfig"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/ksachdeva/zephyr-kconfig","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ksachdeva%2Fzephyr-kconfig","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ksachdeva%2Fzephyr-kconfig/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ksachdeva%2Fzephyr-kconfig/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ksachdeva%2Fzephyr-kconfig/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ksachdeva","download_url":"https://codeload.github.com/ksachdeva/zephyr-kconfig/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ksachdeva%2Fzephyr-kconfig/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33983046,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-06T02:00:07.033Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-06T13:01:33.767Z","updated_at":"2026-06-06T13:01:36.124Z","avatar_url":"https://github.com/ksachdeva.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zephyr KConfig\n\nVarious tools/helpers/cli to assist with Zephyr's KConfig\n\n## Run / Install\n\n### Run via `uvx`\n\n```bash\n# always fetches the latest version\nuvx --from zepyhr-kconfig --help\n```\n\n### Install as a tool (via `uv`)\n\n```bash\n# installs the current version\nuv tool install zephyr-kconfig\n```\n\nAbove also install `zkc` cli (also accessible via `zephyr-kconfig` if you have conflict with `zkc`)\n\n```bash\n# examples - (zkc is an alias to zephyr-kconfig)\nzkc --help\nzephyr-kconfig --help\n```\n\n## Add to your project\n\n```bash\nuv add zephyr-kconfig --dev\n```\n\nand then run the cli via\n\n```bash\nuv run zkc --help\n```\n\n## Features\n\nBelow examples are assuming you are running the tool globally\n\n\u003e Note - uvx does sandboxing (virtualenv) for you so no need to worry\n\n\n### Get info on a KConfig item\n\n```bash\n# get the description as JSON output for CONFIG_LWM2M_SHELL\nuvx zepyhr-kconfig --release 4.3.0 get CONFIG_LWM2M_SHELL\n```\n\n![Example output](docs/images/single_get_example.png)\n\n\u003e A partial CONFIG spec will get all items that start with the provided input for\n  example CONFIG_LWM2M_ will output all L2M2M config items\n\n\u003e Use `--exact` to get the info on CONFIG_LWM2M only\n\n\u003e Use `--metadata` to get some extra fields (such as linenr, menupath etc)\n\n\u003e Use `--indent -1` to remove any indentation (default is 2)\n\n### Get deps on a KConfig item\n\n```bash\n# get the dependencies for CONFIG_LWM2M_SHELL\nuvx zepyhr-kconfig --release 4.3.0 deps CONFIG_LWM2M_SHELL\n```\n\nFor above example output would be:\n\n`CONFIG_LWM2M \u0026\u0026 CONFIG_NETWORKING`\n\n\u003e The input symbol should be exact\n\n### Pretty Print KConfig item(s)\n\n```bash\n# show the description of symbol(s)\nuvx zepyhr-kconfig --release 4.3.0 pprint CONFIG_LWM2M_SHELL\n```\n\n\u003e Use `--exact` to print only one symbol\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fksachdeva%2Fzephyr-kconfig","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fksachdeva%2Fzephyr-kconfig","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fksachdeva%2Fzephyr-kconfig/lists"}