Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
18 changes: 11 additions & 7 deletions CLAUDE.md → AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# CLAUDE.md
# Agent Instructions

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
This file provides repository guidance for AI coding agents working in this repository.

This is the canonical shared handbook for Claude, ChatGPT, GitHub Copilot coding agent, and similar tools.

For GitHub Copilot pull request reviews, review-specific guidance lives in `.github/copilot-instructions.md` and `.github/instructions/*.instructions.md`.

## Project Overview

Expand Down Expand Up @@ -110,10 +114,10 @@ reuse lint # Every file must have SPDX headers
## Important Conventions

- **REUSE license headers required on every file**:
```
// SPDX-FileCopyrightText: 2025 Sequent Tech Inc <legal@sequentech.io>
// SPDX-License-Identifier: AGPL-3.0-only
```
```
// SPDX-FileCopyrightText: 2025 Sequent Tech Inc <legal@sequentech.io>
// SPDX-License-Identifier: AGPL-3.0-only
```
- **Vendored Cargo dependencies**: `packages/vendor/` — Cargo.toml uses `[source.vendored-sources]`
- **Pinned crate**: `wasm-bindgen` 0.2.104 — do not change
- **Forked crate**: `celery` uses a custom fork (Findeton/rusty-celery)
Expand Down Expand Up @@ -188,4 +192,4 @@ Dev service URLs (inside dev container):
- MinIO: http://127.0.0.1:9001
- RabbitMQ: http://127.0.0.1:15672

**Dev container tips**: When editing Rust code in harvest, windmill, or sequent-core, check the pod logs to see if it compiles successfully — the services auto-rebuild on changes inside the dev container.
**Dev container tips**: When editing Rust code in harvest, windmill, or sequent-core, check the pod logs to see if it compiles successfully — the services auto-rebuild on changes inside the dev container.
2 changes: 1 addition & 1 deletion packages/windmill/src/services/cast_votes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ pub async fn find_area_ballots(
election_event_id = '{election_event_id}' AND
area_id = '{area_id}' AND
election_id = '{election_id}'
ORDER BY election_id, voter_id_string, created_at DESC
ORDER BY voter_id_string
"#
Comment on lines 77 to 87
);

Expand Down
Loading