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
4 changes: 2 additions & 2 deletions .coderabbit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ reviews:
Review test files for:
- Comprehensive coverage of contract behavior

# Asset files (images, fonts, etc.)
- path: "assets/**/*"
# Asset files (icons, assets, images, fonts, etc.)
- path: "public/brand/**/*"
instructions: |
Review asset files for:
- Image optimization (appropriate size and format)
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -16,10 +19,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4

uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand All @@ -31,4 +34,4 @@ jobs:
run: npm run lint

- name: Build project
run: npm run build
run: npm run build
7 changes: 4 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
This version has breaking changes — APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in `node_modules/next/dist/docs/` before writing any code. Heed deprecation notices.
<!-- END:nextjs-agent-rules -->

# AOSSIE Webpage Starter
# TODO: Project Title

Project specific context and directives for AI agents.
TODO: Project-specific context and directives for AI agents.

## 🛠️ Stack & Commands

Expand All @@ -28,12 +28,13 @@ Project specific context and directives for AI agents.

- **Dynamic segment:** All localized pages and layouts must be nested inside [`src/app/[locale]/`](src/app/[locale]/).
- **Awaiting params:** Layout and Page `params` props are Promises in Next.js 15/16. Always `await params` before accessing `locale`.
- **Static Export:** Call `setRequestLocale(locale)` in layout and page server components, and export `generateStaticParams()` to support static HTML export (`output: 'export'`).
- **Navigation:** Never import `Link`, `useRouter`, or `usePathname` from standard `next/link` or `next/navigation`. Always import them from local configuration helpers in [`src/i18n/navigation.ts`](src/i18n/navigation.ts).

---

## 📦 Project Boundaries

- **Config alias map:** Webpack & Turbopack alias resolvers are manually defined in [`next.config.ts`](next.config.ts) mapping `"next-intl/config"` to our local request setup. Do not import the native `@swc/core` compiler plugin wrapper `createNextIntlPlugin` directly to avoid security policy native module blocks.
- **Branding Assets:** The official branding logo, favicon, and style specifications reside inside [`brand/`](brand/).
- **Branding Assets:** The official branding logo, favicon, and style specifications reside inside [`public/brand/`](public/brand/).

3 changes: 2 additions & 1 deletion COPYRIGHT.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Copyright © 2025 The Stable Order <br />
# Copyright
Copyright © 2026 The Stable Order <br />
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Comment thread
reach2saksham marked this conversation as resolved.
All rights reserved.

All works in this repository may be used according to the conditions
Expand Down
15 changes: 0 additions & 15 deletions Contributors.md

This file was deleted.

23 changes: 23 additions & 0 deletions MAINTAINERS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Maintainers, Mentors and Ideators

This document lists the individuals fulfilling the key roles of [Maintainer](https://github.com/AOSSIE-Org/Info/blob/main/Roles/Maintainer.md), [Mentor](https://github.com/AOSSIE-Org/Info/blob/main/Roles/Mentors.md) and [Ideator](https://github.com/AOSSIE-Org/Info/blob/main/Roles/Ideator.md) for this repository, in accordance with [AOSSIE's Role Definitions](https://github.com/AOSSIE-Org/Info/tree/main/Roles).

---

## Ideators

| Name | GitHub Username | Discord Username | Project / Feature Idea | Area / Focus | Proposal / Discussion Link |
| ---- | --------------- | ---------------- | ------------------------------- | -------------------- | ------------------------------------------- |
| TODO | @username | @discord_user | Context-First AI Infrastructure | AI Workflow & Skills | [Discussion](https://github.com/AOSSIE-Org) |

## Mentors

| Name | GitHub Username | Discord Username | Area / Focus |
| ---- | --------------- | ---------------- | ----------------------------------- |
| TODO | @username | @discord_user | whole Project Guidance & PR Reviews |

## Maintainers

| Name | GitHub Username | Discord Username | Area / Focus |
| ---- | --------------- | ---------------- | -------------------------------- |
| TODO | @username | @discord_user | Repository Maintenance & Merging |
Comment thread
reach2saksham marked this conversation as resolved.
Loading
Loading