Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# VitNode AI Coding Agent Guidelines (Extended)

The repository is a monorepo for the VitNode framework, which includes a backend API, frontend documentation site, and shared packages. The codebase uses modern web technologies and follows specific conventions for development based on Next.js 15 and Hono.js 4.

## Architecture & Key Patterns

- **Monorepo Structure:**
Expand All @@ -8,7 +10,7 @@
- `plugins/` for extendable features
- **Frontend:**
- Next.js 15, App Router, Server Components
- Use `vitnode/lib/navigation` for navigation (not `next/navigation`)
- Avoid using `next/navigation` directly, use `vitnode/lib/navigation`
- Forms: Use `react-hook-form@7`, server actions for mutations
- UI: Shadcn UI, Tailwind CSS 4, dark/light mode with system detection
- i18n: Use `next-intl`, `t('key')` for translations, `getTranslation` (server), `useTranslation` (client)
Expand Down Expand Up @@ -61,3 +63,14 @@
---

For unclear or missing patterns, ask for clarification or request more examples from maintainers.

## New Code

If you add new code or change existing code, always verify that
everything still works by running _each_ of the following checks:

1. `npm run lint` to run the linter.
2. `npm run lint:fix` to fix any linting issues.
3. `npm run test` to run the tests.

Complete the task only after all checks pass.
2 changes: 1 addition & 1 deletion .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10.13.1
version: 10.14.0

- name: Install Node.js
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bump_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10.13.1
version: 10.14.0

- name: Install Node.js
uses: actions/setup-node@v4
Expand Down
2 changes: 0 additions & 2 deletions apps/api/migrations/0001_chemical_tomorrow_man.sql

This file was deleted.

Loading