Skip to content

Commit 35f6f05

Browse files
brannnclaude
andcommitted
Clean up install script and domain contribution guidelines
Remove unused VERSION variable from install.sh. Add guidance to DOMAINS.md that new domain PRs must not duplicate or conflict with existing domains. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ec7d88e commit 35f6f05

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

DOMAINS.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,11 @@ These verify that agents hedge appropriately on questions that fall outside any
128128

129129
To add a new domain:
130130

131-
1. Add keywords to `DomainKeywords` in `internal/analysis/domains.go`
132-
2. Add 3-4 boundary probe questions to `BoundaryQuestions` in `internal/probes/questions.go`
133-
3. Include at least one in-domain calibration question (where the `domain` field matches the domain key) and at least two cross-domain boundary questions
134-
4. Run `go test ./...` to verify nothing breaks
135-
5. Update this file with the new domain, its keywords, and which domains its probes test against
131+
1. Check this file first. New domains must not duplicate or conflict with existing domains. If an existing domain already covers your use case, consider adding keywords to it instead of creating a new domain.
132+
2. Add keywords to `DomainKeywords` in `internal/analysis/domains.go`.
133+
3. Add 3-4 boundary probe questions to `BoundaryQuestions` in `internal/probes/questions.go`.
134+
4. Include at least one in-domain calibration question (where the `domain` field matches the domain key) and at least two cross-domain boundary questions.
135+
5. Run `go test ./...` to verify nothing breaks.
136+
6. Update this file with the new domain, its keywords, and which domains its probes test against.
136137

137138
Probe questions should be specific enough that a knowledgeable agent could answer them, but clearly outside scope for agents in other domains. Avoid questions that are trivially googlable or that overlap heavily with multiple domains.

install.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ if [ -z "$LATEST" ]; then
3131
exit 1
3232
fi
3333

34-
VERSION="${LATEST#v}"
3534
ARCHIVE="${BINARY}_${OS}_${ARCH}.tar.gz"
3635
URL="https://github.com/${REPO}/releases/download/${LATEST}/${ARCHIVE}"
3736

0 commit comments

Comments
 (0)