This project uses a two-folder structure to separate example code from working code: ``` src/ ├── components/ # Working components (Storybook reads from here) │ └── global.css # Base styles imported by Storybook ├── stories/ # Working stories (Storybook reads from here) examples/ ├── components/ # Example component implementations (for reference) └── stories/ # Example stories (for reference) ``` Detect the package manager by checking for lock files in the project roo...
Scanned 9/4/2026
Install to Claude Code
npx -y skills add NeverSight/skills_feed --skill nebula-project-structure --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Nebula Project Structure?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/neversight-nebula-project-structure)More formats (shields.io, HTML) on the badges page.
---
name: nebula-project-structure
description:
Project folder structure and package manager detection for Nebula. Reference
when navigating the codebase, running commands, or determining which package
manager to use (npm/yarn/pnpm/bun).
---
# Project structure
This project uses a two-folder structure to separate example code from working
code:
```
src/
├── components/ # Working components (Storybook reads from here)
│ └── global.css # Base styles imported by Storybook
├── stories/ # Working stories (Storybook reads from here)
examples/
├── components/ # Example component implementations (for reference)
└── stories/ # Example stories (for reference)
```
# Package manager
Detect the package manager by checking for lock files in the project root:
- `package-lock.json` → npm (`npm run`, `npx`)
- `yarn.lock` → yarn (`yarn`, `yarn dlx`)
- `pnpm-lock.yaml` → pnpm (`pnpm`, `pnpm dlx`)
- `bun.lockb` → bun (`bun run`, `bunx`)
Use the detected package manager for all commands in these instructions.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!