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
6 changes: 6 additions & 0 deletions src/api/json/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -8000,6 +8000,11 @@
"fileMatch": ["vector.json", "vector.toml", "vector.yaml"],
"url": "https://www.schemastore.org/vector.json"
},
{
"name": "Vee JSON menu output",
"description": "Structured JSON printed by a Vee menu-bar plugin, the alternative to the xbar/SwiftBar text protocol",
"url": "https://vee.navbytes.io/schemas/json-output.schema.json"
},
{
"name": "vega.json",
"description": "Vega visualization specification file",
Expand Down Expand Up @@ -8110,6 +8115,7 @@
"v5.3.4": "https://raw.githubusercontent.com/vega/schema/refs/heads/master/vega/v5.3.4.json",
"v5.3.5": "https://raw.githubusercontent.com/vega/schema/refs/heads/master/vega/v5.3.5.json",
"v5.4.0": "https://raw.githubusercontent.com/vega/schema/refs/heads/master/vega/v5.4.0.json",
"v5.5.0": "https://raw.githubusercontent.com/vega/schema/refs/heads/master/vega/v5.5.0.json",
"v5.6.0": "https://raw.githubusercontent.com/vega/schema/refs/heads/master/vega/v5.6.0.json",
"v5.7.0": "https://raw.githubusercontent.com/vega/schema/refs/heads/master/vega/v5.7.0.json",
"v5.7.1": "https://raw.githubusercontent.com/vega/schema/refs/heads/master/vega/v5.7.1.json",
Expand Down
3 changes: 3 additions & 0 deletions src/negative_test/crucible-code-schema/not-a-rung.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"providers": { "anthropic": { "effort": "hardest" } }
}
3 changes: 3 additions & 0 deletions src/negative_test/crucible-code-schema/not-a-tone.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"systemPrompt": { "tone": "verbose" }
}
33 changes: 33 additions & 0 deletions src/schemas/json/crucible-code-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,39 @@
},
"type": "object"
},
"systemPrompt": {
"additionalProperties": false,
"description": "What the model is asked under: how much it explains, and anything you would rather it were told instead",
"properties": {
"$schema": {
"type": "string"
},
"$comment": {
"type": "string"
},
"append": {
"description": "Instructions to add to crucible's own, said after them and every turn",
"examples": [
"This repository is deployed on Fridays; never push to main."
],
"type": "string"
},
"custom": {
"description": "Instructions to ask every turn under in place of crucible's own, replacing them entirely. Read only from the configuration file in your home directory",
"examples": [
"You are a reviewer. Read and explain; never edit a file."
],
"type": "string"
},
"tone": {
"default": "concise",
"description": "How much of the reasoning comes back with the answer: concise for the conclusion, explanatory for why it is that one, learning for what to know before touching the code again",
"enum": ["concise", "explanatory", "learning"],
"type": "string"
}
},
"type": "object"
},
"updates": {
"additionalProperties": false,
"description": "Whether crucible finds out that a newer release exists",
Expand Down
5 changes: 5 additions & 0 deletions src/test/crucible-code-schema/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@
"model": "gpt-5.2"
}
},
"systemPrompt": {
"append": "This repository is deployed on Fridays; never push to main.",
"custom": "You are a reviewer. Read and explain; never edit a file.",
"tone": "explanatory"
},
"updates": {
"check": "never"
}
Expand Down