Context loader
Skill quantum-box/agent-packages/plugins/quantum-box/skills/context-loader
Distribution repository for agent skills and plugins
npx -y skills add quantum-box/agent-packages --skill context-loaderAssembled 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.
- 0 stars0 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
Load context for specific domain or feature. Use proactively when: (1) Starting work on specific domain (auth, payment, library). (2) User mentions working on particular feature. (3) Need deep understanding of one area. (4) Before implementing in unfamiliar domain.
SKILL.md
2.0 KB, as published. Nobody here has run it
Context Loader
Load relevant context for focused work on specific domains.
Domains
Auth
Paths: packages/auth/, apps/*/src/handler/graphql/*auth*
Memories: development_guidelines
Key files: packages/auth/src/app.rs, packages/auth/domain/src/
Payment / Billing
Paths: packages/payment/, packages/catalog/
Memories: project_overview (NanoDollar section)
Key files: packages/payment/src/app.rs, docs/src/architecture/nanodollar-system.md
Library
Paths: apps/library-api/, apps/library/, packages/library/
Key files: apps/library-api/src/usecase/, apps/library-api/schema.graphql
LLMs / AI
Paths: packages/llms/, packages/agents/, packages/providers/
Key files: packages/llms/src/app.rs, apps/tachyon-api/src/handler/agent/
CRM
Paths: packages/crm/, packages/hubspot/
Key files: packages/crm/src/app.rs
Frontend (Tachyon)
Paths: apps/tachyon/src/
Key files: apps/tachyon/src/app/, apps/tachyon/src/gen/graphql.ts
Workflow
- Identify domain from user request
- Read relevant Serena memories
- Get symbols overview of key files
- Load related taskdocs in
in-progress,todo,backlog, and recentcompletedentries for that domain - Load linked DDs and ADRs when taskdocs reference them
- Present context summary
Context Summary Format
## Context: [Domain]
**Key Files**:
- path/to/main.rs - Main entry point
- path/to/usecase/ - Business logic
**Patterns Used**:
- Clean Architecture with InputData/InputPort
- Policy-based authorization
**Related Taskdocs**:
- docs/src/tasks/in-progress/xxx/
**Related Design Docs / ADRs**:
- docs/src/tasks/in-progress/xxx/design.md
- docs/src/architecture/decisions/ADR-xxxx-xxx.md
**Ready to implement in this domain**