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
15 changes: 15 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"extraKnownMarketplaces": {
"reqstool-ai": {
"source": {
"source": "github",
"repo": "reqstool/reqstool-ai"
},
"autoUpdate": true
}
},
"enabledPlugins": {
"reqstool@reqstool-ai": true,
"reqstool-openspec@reqstool-ai": true
}
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ bin/
.DS_Store

### Claude Code ###
.claude/
.claude/*
!.claude/settings.json
14 changes: 14 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ For DCO sign-off, commit conventions, and code review process, see the organizat

- Java 21+
- Gradle 9.3+ (use the wrapper)
- [reqstool](https://github.com/reqstool/reqstool-client) (`pipx install reqstool`)
- [OpenSpec](https://github.com/Fission-AI/OpenSpec) (`npm install -g @fission-ai/openspec`)

## Setup

Expand All @@ -16,6 +18,18 @@ git clone https://github.com/reqstool/reqstool-java-gradle-plugin.git
cd reqstool-java-gradle-plugin
```

If using Claude Code, opening this repo will prompt you to confirm adding the `reqstool-ai`
marketplace and enabling the `reqstool`/`reqstool-openspec` plugins (configured in
`.claude/settings.json`) — accept the prompt.

Then regenerate the `opsx` slash commands and OpenSpec skills
(`.claude/commands/opsx/`, `.claude/skills/openspec-*`) — they're CLI-generated tool scaffolding,
not committed to the repo:

```bash
openspec update # or: openspec init --tools claude --force
```

## Build & Test

```bash
Expand Down