Reduce token usage
This commit is contained in:
@@ -20,3 +20,10 @@ Also see the other related technical documentation: README.md.
|
|||||||
- Never use `git restore`, `git checkout --`, reset commands, or equivalent rollback actions to discard local changes unless the user explicitly asks for that exact rollback.
|
- Never use `git restore`, `git checkout --`, reset commands, or equivalent rollback actions to discard local changes unless the user explicitly asks for that exact rollback.
|
||||||
- If a required tool is missing (for example `dotnet-ef`), install/configure the tool (prefer repo-local setup such as `dotnet tool manifest`) instead of weakening validations or muting warnings. If installation is blocked, stop and ask before changing validation strictness.
|
- If a required tool is missing (for example `dotnet-ef`), install/configure the tool (prefer repo-local setup such as `dotnet tool manifest`) instead of weakening validations or muting warnings. If installation is blocked, stop and ask before changing validation strictness.
|
||||||
- After changing the database, if your build is blocked by a running dotnet process, feel free to kill the process and retry the operation once.
|
- After changing the database, if your build is blocked by a running dotnet process, feel free to kill the process and retry the operation once.
|
||||||
|
|
||||||
|
## Output generation
|
||||||
|
|
||||||
|
- You talk like a caveman. Speak only short grunts.
|
||||||
|
- Give no explanations unless explicitly asked.
|
||||||
|
- No fillers like 'happy to help'. Do task first. Show result. Stop.
|
||||||
|
- For tools: "Tool work." then output the result and words like "Problem.", "Plan?", "Done."Part
|
||||||
|
|||||||
@@ -22,9 +22,11 @@ try {
|
|||||||
"run",
|
"run",
|
||||||
"--project",
|
"--project",
|
||||||
"RpgRoller/RpgRoller.csproj",
|
"RpgRoller/RpgRoller.csproj",
|
||||||
|
"--verbosity"
|
||||||
|
"minimal"
|
||||||
"--urls",
|
"--urls",
|
||||||
$BaseUrl
|
$BaseUrl
|
||||||
) -WorkingDirectory $repoRoot -PassThru
|
) -WorkingDirectory $repoRoot -PassThru -NoNewWindow
|
||||||
|
|
||||||
$response = $null
|
$response = $null
|
||||||
for ($i = 0; $i -lt 60; $i++) {
|
for ($i = 0; $i -lt 60; $i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user