Skip to content

Commit 2b6c7fe

Browse files
committed
Add AGENTS.md and CLAUDE.md for AI coding agent guidance
1 parent 33cb95b commit 2b6c7fe

2 files changed

Lines changed: 38 additions & 0 deletions

File tree

AGENTS.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# AGENTS.md
2+
3+
This file provides guidance to AI coding agents when working with code in this repository.
4+
5+
## What this project is
6+
7+
A Visual Studio Code extension for [code_ownership](https://github.com/rubyatscale/code_ownership). It shows the owning team for the currently open file and lets developers quickly navigate to ownership configuration.
8+
9+
## Commands
10+
11+
```bash
12+
npm install
13+
14+
# Build (webpack)
15+
npm run build
16+
17+
# Production build
18+
npm run build:prod
19+
20+
# Watch mode
21+
npm run watch
22+
23+
# Run tests
24+
npm test
25+
26+
# Lint
27+
npm run lint
28+
29+
# Auto-fix lint
30+
npm run fix
31+
```
32+
33+
## Architecture
34+
35+
- `src/` — TypeScript source; the extension queries the `code_ownership` Ruby gem (or a language server) to resolve ownership for the active file and displays it in the status bar
36+
- `package.json` — VS Code extension manifest, activation events, contributed commands, and webpack build config
37+
- `webpack.config.js` — bundles the extension for distribution

CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@AGENTS.md

0 commit comments

Comments
 (0)