AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Imgui Repo Navigator

skill-cuopipyyy-skills-for-agent-imgui-repo-navigator · by Cuopipyyy

Navigate and extract authoritative information from a local Dear ImGui checkout or, when the local repo is missing or does not answer the query, from the official GitHub repository. Also use it to find similar open-source Dear ImGui projects before implementing higher-level app features so proven patterns can be adapted safely. Use when implementing, modifying, reviewing, or debugging Dear ImGui…

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-cuopipyyy-skills-for-agent-imgui-repo-navigator

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-cuopipyyy-skills-for-agent-imgui-repo-navigator)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Imgui Repo Navigator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

  1. For app-level feature work, first search for similar open-source Dear ImGui projects that already implement the feature or a close cousin.
  2. Run python scripts/find_imgui_targets.py [terms...] in auto mode.
  3. Use --mode local when the answer must match the vendored or checked-out version exactly.
  4. Use --mode upstream --ref master|tag|commit when the task explicitly asks for official upstream behavior or a specific release.
  5. Use --repo PATH to point at a vendored ImGui subtree inside another project.
  6. Use --github-url URL only when the upstream is not https://github.com/ocornut/imgui.

Source Priority

  1. Explicit --repo path.
  2. Local workspace repo or vendored subtree containing imgui.h, backends/, examples/, and docs/.
  3. 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.h as the public API contract.
  • Treat backend headers in backends/ as the public integration contract for a platform or renderer.
  • Treat example main.cpp files as the reference for init order, per-frame order, shutdown order, and platform glue.
  • Treat imgui_demo.cpp as the best usage catalog for end-user widgets and patterns.
  • Treat docs/*.md and docs/*.txt as the first stop for conceptual or FAQ-style questions.
  • Treat imgui_internal.h and 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 auto mode 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, then imgui_demo.cpp, then the matching implementation file.
  • Backend or renderer integration question: open the matching backends/imgui_impl_*.h/.cpp, then the closest examples/example_*/main.cpp.
  • Usage or troubleshooting question: open docs/FAQ.md, docs/FONTS.md, docs/BACKENDS.md, or docs/EXAMPLES.md.
  • Build or run question: open the example README.md, Makefile, or CMakeLists.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 ref in the answer.

Task Rules

Core API and widgets

  • Open imgui.h first.
  • Open imgui_demo.cpp to find working usage patterns.
  • Open imgui_widgets.cpp, imgui_tables.cpp, or imgui_draw.cpp only 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 .cpp top section next for implementation notes, changelog items, and platform caveats.
  • Read the exact example main.cpp that combines the platform backend and renderer backend you need.

Tool-style desktop UI

  • For menu bars, inspect ImGui::BeginMainMenuBar() usage in imgui_demo.cpp and declarations in imgui.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.md and the relevant FAQ entries.
  • For image rendering or texture handles, read the FAQ entry about ImTextureID and 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 ref when 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.