Codebase context
npx -y skills add mrge-io/skills --skill codebase-contextAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Queries cubic's AI-generated wiki to provide architectural context about the codebase. Answers questions about how systems work, how components connect, and codebase design. Use when the user asks about architecture, system design, onboarding, or "how does X work".
SKILL.md
2.0 KB, 372 tokens by cl100k_base, as published. Nobody here has run it
Codebase Context
Query cubic's AI-generated wiki to answer questions about codebase architecture and design.
When To Activate
- User asks how a system or feature works
- User is onboarding to a new codebase
- User needs to understand how components connect
- User asks about architecture, data flow, or system design
- User is making changes that span multiple modules and needs context
Inputs
- Question (required): What the user wants to know about the codebase.
Instructions
1. Detect the repository
git remote get-url origin
Extract the owner and repo name from the remote URL.
2. Find relevant pages
Call list_wiki_pages with the owner and repo. Match page titles and descriptions to the user's question.
3. Fetch content
Call get_wiki_page for the most relevant pages (1–3 pages max).
4. Synthesize an answer
Combine wiki content into a focused answer for the user's specific question. Connect wiki knowledge to the specific files or modules the user is working with.
Output Format
Summarize the relevant wiki content — don't dump entire pages. Reference specific wiki pages so the user can explore further.
Based on the cubic wiki for this repo:
**Authentication Flow**
The auth system uses JWT tokens with refresh rotation. Login requests hit
`src/auth/login.ts` which validates credentials against the user store,
then issues a token pair via `src/auth/tokens.ts`.
-> Wiki: "Authentication Architecture" · "Token Lifecycle"
**Related files:** src/auth/login.ts, src/auth/tokens.ts, src/middleware/auth.ts
If no wiki exists for this repo, suggest the user set one up in the cubic dashboard.