# Skill: create-package ## Goal Create a new package under `packages/` with correct configs and workspace wiring. ## Checklist 1. Create folder `packages/`. 2. Add `package.json` with `name: @astralview/` and scripts: `build`, `lint`, `typecheck`, `test`. 3. Add `tsconfig.json` extending `../../tsconfig.base.json`. 4. Expose entrypoint `src/index.ts`. 5. Add minimal README. 6. `pnpm install` then `pnpm -r build`.