| name | dockview-api-only |
| description | Minimal Dockview API reference (~26k tokens). USE THIS SKILL FOR: quick type lookups, checking method signatures, finding prop interfaces, understanding public API surface. Contains ONLY: public API classes, TypeScript interfaces, React component props, API documentation. Does NOT contain internal implementation or examples. Choose this when you need 'what methods exist' or 'what props does X accept'. |
Dockview API Reference (Minimal)
42 files | 4143 lines | 26243 tokens
Contents
packages/dockview-core/src/api/**/*.ts - Public API classes
packages/dockview-core/src/dockview/types.ts - Core type definitions
packages/dockview-core/src/dockview/options.ts - Configuration options
packages/dockview/src/**/*.{ts,tsx} - React component wrappers
packages/docs/docs/api/**/*.mdx - API documentation
Files
| File | Contents |
|---|
references/summary.md | Start here - Purpose, format explanation, and statistics |
references/project-structure.md | Directory tree with line counts per file |
references/files.md | All file contents (search with ## File: <path>) |
How to Use
1. Find file locations
Check project-structure.md for the directory tree:
src/
index.ts (42 lines)
utils/
helpers.ts (128 lines)
2. Read file contents
Grep in files.md for the file path:
## File: src/utils/helpers.ts
3. Search for code
Grep in files.md for keywords:
function calculateTotal
Common Use Cases
Understand a feature:
- Search
project-structure.md for related file names
- Read the main implementation file in
files.md
- Search for imports/references to trace dependencies
Debug an error:
- Grep the error message or class name in
files.md
- Check line counts in
project-structure.md to find large files
Find all usages:
- Grep function or variable name in
files.md
Tips
- Use line counts in
project-structure.md to estimate file complexity
- Search
## File: pattern to jump between files
- Check
summary.md for excluded files, format details, and file statistics
This skill was generated by Repomix