Agent Skill Discovery & Management Platform
# Install dependencies
pnpm install
# Build packages
pnpm build
# Start web dev server
pnpm --filter @shareskill/web dev
# Start hub locally
pnpm --filter shareskill devshareskill-v2/
├── apps/
│ ├── web/ # SvelteKit web service (shareskill.run)
│ └── hub/ # npm package (npx shareskill)
├── packages/
│ ├── shared/ # Shared types and constants
│ └── db/ # Database schema and client
├── pipeline/ # Data processing scripts
└── docs/ # Documentation
Copy .env.example to .env and fill in the values:
cp .env.example .envpnpm --filter @shareskill/web devpnpm --filter shareskill build
npx shareskill setup
npx shareskill servepnpm --filter @shareskill/pipeline start- Web: Auto-deploys to Vercel on push to main
- Hub: Publish to npm with
git tag hub-v0.1.0 && git push --tags - Pipeline: Runs every 6 hours via GitHub Actions
See docs/ folder for detailed documentation.