Install
$ agentstack add skill-cuopipyyy-skills-for-agent-imgui-repo-navigator ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
ImGui Repo Navigator
Use local Dear ImGui sources first to stay aligned with the checked-out version. If the local repo is missing or local lookup produces no useful match for the query, fall back to the official upstream GitHub repository.
For higher-level application features that are not obvious stock widgets, first look for similar open-source Dear ImGui projects or extensions, then verify the exact API, backend, and lifecycle details against local or upstream Dear ImGui sources.
Quick Start
- For app-level feature work, first search for similar open-source Dear ImGui projects that already implement the feature or a close cousin.
- Run
python scripts/find_imgui_targets.py [terms...]inautomode. - Use
--mode localwhen the answer must match the vendored or checked-out version exactly. - Use
--mode upstream --ref master|tag|commitwhen the task explicitly asks for official upstream behavior or a specific release. - Use
--repo PATHto point at a vendored ImGui subtree inside another project. - Use
--github-url URLonly when the upstream is nothttps://github.com/ocornut/imgui.
Source Priority
- Explicit
--repopath. - Local workspace repo or vendored subtree containing
imgui.h,backends/,examples/, anddocs/. - Official GitHub repo fallback.
In auto mode, use local results if they contain a meaningful match. If not, retry against upstream.
Authority Order
- Treat
imgui.has the public API contract. - Treat backend headers in
backends/as the public integration contract for a platform or renderer. - Treat example
main.cppfiles as the reference for init order, per-frame order, shutdown order, and platform glue. - Treat
imgui_demo.cppas the best usage catalog for end-user widgets and patterns. - Treat
docs/*.mdanddocs/*.txtas the first stop for conceptual or FAQ-style questions. - Treat
imgui_internal.hand internal implementation files as private details; use them only when the task explicitly needs internals or a bug fix.
Workflow
Locate the right source
- Start with
scripts/find_imgui_targets.py. - Prefer
automode unless the user explicitly asks for local-only or upstream-only behavior. - When local and upstream may differ, state which source you used and why.
Scout proven reference implementations for app features
- Trigger this when the task is a feature or workflow, not just a single widget or API call: file browsers, inspectors, asset browsers, log consoles, timelines, node graphs, profiler panes, dockable editors, launchers, and similar tooling UI.
- Search for open-source Dear ImGui projects or extensions that already implement the target feature, or a close cousin with the same interaction model.
- Prefer repositories that show screenshots or demo videos, expose the exact files that implement the feature, are actively maintained enough to be readable, and use a compatible platform or renderer stack when possible.
- Use external projects for feature structure, state flow, layout ideas, custom drawing patterns, and UX tradeoffs.
- Treat external repos as reference implementations, not API authority. Verify all ImGui API details, backend calls, and lifecycle order against
imgui.h,imgui_demo.cpp, backend headers, and official docs before answering or patching code. - If no close reference project is available, fall back to the closest official demo or example and say that no strong external match was found.
Classify the task before reading many files
- Core widget or public API question: open
imgui.h, thenimgui_demo.cpp, then the matching implementation file. - Backend or renderer integration question: open the matching
backends/imgui_impl_*.h/.cpp, then the closestexamples/example_*/main.cpp. - Usage or troubleshooting question: open
docs/FAQ.md,docs/FONTS.md,docs/BACKENDS.md, ordocs/EXAMPLES.md. - Build or run question: open the example
README.md,Makefile, orCMakeLists.txt.
Preserve exactness
- Prefer an exact platform + renderer example.
- If there is no exact example, preserve platform first, renderer second, and state the inference.
- When using upstream fallback, include the GitHub repo and
refin the answer.
Task Rules
Core API and widgets
- Open
imgui.hfirst. - Open
imgui_demo.cppto find working usage patterns. - Open
imgui_widgets.cpp,imgui_tables.cpp, orimgui_draw.cpponly after identifying the relevant API family.
Backends and integration
- Read the backend header comments and declarations first; they summarize supported features and public entry points.
- Read the backend
.cpptop section next for implementation notes, changelog items, and platform caveats. - Read the exact example
main.cppthat combines the platform backend and renderer backend you need.
Tool-style desktop UI
- For menu bars, inspect
ImGui::BeginMainMenuBar()usage inimgui_demo.cppand declarations inimgui.h. - For docking or multi-viewport work, confirm support in the current source before assuming it exists. Search for
DockSpace,DockingEnable,ViewportsEnable, and related flags. - Prefer local demo and example code over ad-hoc internet snippets.
Application features and product-style tooling
- When building a feature rather than answering a narrow API question, search for similar open-source Dear ImGui applications first.
- Favor references that match the interaction pattern even if the domain differs. A profiler panel may teach a timeline or tree workflow; an asset browser may teach file-grid interactions.
- After finding a promising external example, map its implementation back to the current Dear ImGui source so version mismatches and stale calls are corrected before reuse.
- Be explicit about what came from official Dear ImGui sources versus what was inferred from another project's implementation.
Fonts, text, textures, and images
- Start with
docs/FONTS.mdand the relevant FAQ entries. - For image rendering or texture handles, read the FAQ entry about
ImTextureIDand then inspect the active renderer backend header to confirm the expected texture type.
Build and run
- Use the per-example build files under
examples/. - Do not assume a root-level build exists; confirm it from the chosen source.
Output Expectations
- Reference concrete local file paths when local lookup wins.
- Reference concrete GitHub blob URLs with the chosen
refwhen upstream lookup wins. - When external project references are used, cite the repository URL and the exact file path or commit when available.
- Explain which file is authoritative for the requested fact.
- Clearly separate authoritative Dear ImGui facts from external reference implementation ideas.
- Call out when you infer from the closest example instead of an exact match.
- State when the answer came from upstream fallback instead of the local checkout.
Resources
references/repo-map.md: where each class of Dear ImGui information lives.references/example-matrix.md: platform/renderer example directory map.references/project-hunt.md: how to search for and vet similar open-source Dear ImGui projects.references/task-playbook.md: common lookup recipes and lookup mode guidance.scripts/find_imgui_targets.py: primary cross-platform lookup script.scripts/find_imgui_targets.sh: shell wrapper that calls the Python script.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Cuopipyyy
- Source: Cuopipyyy/skillsfor_agent
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.