Skip to content
Closed
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
13 changes: 13 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = {
root: true,
env: {
node: true,
es2022: true
},
parserOptions: {
ecmaVersion: 2022,
sourceType: 'module'
},
extends: ['eslint:recommended'],
ignorePatterns: ['node_modules/', 'test-output/', 'dist/', 'build/']
};
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/agent-task.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Agent Task
about: Structured task template for agentic coding
labels: [agent-task]
---

## Goal

<!-- What needs to be done? -->

## Constraints

-

## Acceptance Criteria

- [ ]

## Validation

- [ ] `make validate`

## Notes

- Link to relevant docs or prompts
16 changes: 16 additions & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# GitHub Copilot Instructions (Agent Mode)

This repository is **AGENTS.md-first**. Always read and follow `AGENTS.md` before making changes.

## Required Workflow

1. Keep changes scoped to the task.
2. Do not add dependencies without explicit approval.
3. Run `make validate` before finishing.
4. Report exact commands and results in the PR.

## Helpful References

- `AGENTS.md` – canonical rules
- `docs/guides/COPILOT_AGENT_MODE.md` – Copilot agent workflow
- `docs/templates/AGENT_TASK_CHECKLIST.md` – coordination checklist
14 changes: 14 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Summary

-

## Validation

- [ ] `make validate`

## Agent Checklist (if applicable)

- [ ] Followed `AGENTS.md`
- [ ] No new dependencies without approval
- [ ] Tests updated (unit/integration/golden as needed)
- [ ] Risks and follow-ups documented
Loading
Loading