understand-project
SkillDev toolsGround a feature or fix in existing code before planning or building — find a similar pattern, identify reusable assets, map the touch surface. Internal helper invoked by feat / fix (both modes) — not meant to be run on its own.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the understand-project skill
What this skill tells your AI
The instructions your AI receives, as published by akylas/conty in .claude/skills/understand-project/SKILL.md and read by ahel’s review.
Ground every plan and implementation in code that already exists. A plan that says "follows the same pattern as app/components/edit/DocumentEdit.svelte" beats one describing an abstraction in the abstract — the executor gets low cognitive load and a working reference. This is the method; the calling skill says what to build.
Steps
- Learn the layout that applies. App code is under
app/:.sveltescreens/components/modals live inapp/components/<feature>/(feature dirs:camera,edit,list,ocr,pdf,pkpass,qrcode,security,settings,view,common,widgets); domain logic lives in service singletons underapp/services/(documents.ts,sync.ts,ocr.ts,security.ts, …); data models inapp/models/; helpers inapp/utils/,app/helpers/,app/transformers/; strings inapp/i18n/; SCSS themes inapp/themes/. Platform splits use.android.ts/.ios.ts. - Find a similar existing implementation. Glob/Grep for a
.sveltecomponent or a service that solves a comparable problem. Read 1-2 end-to-end so you can point at them by path. - Identify reusable assets — existing components in
app/components/common/andapp/components/widgets/, svelte stores (app/utils/svelte/store.ts), service singletons, models, and utils/helpers. Reuse these by name rather than inventing new ones. - Map the touch surface — every file, component, service, model, i18n key that needs to change. Trace data flow and callers (service singletons are shared, so a change ripples) so nothing is missed.
- Check third-party libraries — when a library is involved (
@nativescript-community/*,@akylas/*, svelte-native, sqlite/kiss-orm, …), use Context7 for version-matched docs before assuming an API.
Bias
Pick the simplest, cleanest solution: reuse existing patterns/components/hooks, fewest files touched, smallest new surface. If a clever approach and a boring approach reach the same outcome, choose the boring one.
Signals
- GitHub stars
- 42
- Forks
- 4
- Last commit
- Aug 2026
Others that do the same job
Advanced
- Catalog kind
- skill
- Gateway key
understand-project- Source
- github.com/akylas/conty