Skip to content

Commit d4b3b75

Browse files
dduuggclaude
andauthored
Add AGENTS.md and CLAUDE.md for AI coding agent guidance (#27)
* Add AGENTS.md and CLAUDE.md for AI coding agent guidance * Fix inaccuracies in AGENTS.md - Remove redundant heading that repeats the filename - Fix incorrect spec/fixtures/ references where that directory doesn't exist - Fix Claude-specific intro text to be agent-agnostic (pks only) Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
1 parent e51b08b commit d4b3b75

2 files changed

Lines changed: 36 additions & 0 deletions

File tree

AGENTS.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
This file provides guidance to AI coding agents when working with code in this repository.
2+
3+
## What this project is
4+
5+
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.
6+
7+
## Commands
8+
9+
```bash
10+
npm install
11+
12+
# Build (webpack)
13+
npm run build
14+
15+
# Production build
16+
npm run build:prod
17+
18+
# Watch mode
19+
npm run watch
20+
21+
# Run tests
22+
npm test
23+
24+
# Lint
25+
npm run lint
26+
27+
# Auto-fix lint
28+
npm run fix
29+
```
30+
31+
## Architecture
32+
33+
- `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
34+
- `package.json` — VS Code extension manifest, activation events, contributed commands, and webpack build config
35+
- `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)