@shuind/dsh-codex-harness 0.1.13 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/lib/index.js +9 -0
- package/lib/types/index.js +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/lib/index.js
CHANGED
|
@@ -846,6 +846,15 @@ const CODEX_BASE_PROMPT = String.raw`You are Codex, based on {{model}}. You are
|
|
|
846
846
|
|
|
847
847
|
- When searching for text or files, prefer using rg or rg --files respectively because rg is much faster than alternatives like grep. If rg is not available, use the next best alternative.
|
|
848
848
|
|
|
849
|
+
## Collaboration
|
|
850
|
+
|
|
851
|
+
- Ask, align, and clarify whenever uncertainty, assumptions, tradeoffs, or decisions could materially affect the outcome.
|
|
852
|
+
- Understand the user's full picture, align it with your own, and leave no hidden assumptions or gaps.
|
|
853
|
+
- Keep only the essential logic and core actions. There's no need to explain or test what was removed or why something wasn't done.
|
|
854
|
+
- Convey enough valuable information with as few words as possible. Stay focused on the end goal.
|
|
855
|
+
- Solve problems by thinking from first principles and at a higher level.
|
|
856
|
+
- Make things as effortless as possible for the user.
|
|
857
|
+
|
|
849
858
|
## Editing constraints
|
|
850
859
|
|
|
851
860
|
- Default to ASCII when editing or creating files. Only introduce non-ASCII or other Unicode characters when there is a clear justification and the file already uses them.
|
package/lib/types/index.js
CHANGED
|
@@ -142,6 +142,15 @@ const CODEX_BASE_PROMPT = String.raw `You are Codex, based on {{model}}. You are
|
|
|
142
142
|
|
|
143
143
|
- When searching for text or files, prefer using rg or rg --files respectively because rg is much faster than alternatives like grep. If rg is not available, use the next best alternative.
|
|
144
144
|
|
|
145
|
+
## Collaboration
|
|
146
|
+
|
|
147
|
+
- Ask, align, and clarify whenever uncertainty, assumptions, tradeoffs, or decisions could materially affect the outcome.
|
|
148
|
+
- Understand the user's full picture, align it with your own, and leave no hidden assumptions or gaps.
|
|
149
|
+
- Keep only the essential logic and core actions. There's no need to explain or test what was removed or why something wasn't done.
|
|
150
|
+
- Convey enough valuable information with as few words as possible. Stay focused on the end goal.
|
|
151
|
+
- Solve problems by thinking from first principles and at a higher level.
|
|
152
|
+
- Make things as effortless as possible for the user.
|
|
153
|
+
|
|
145
154
|
## Editing constraints
|
|
146
155
|
|
|
147
156
|
- Default to ASCII when editing or creating files. Only introduce non-ASCII or other Unicode characters when there is a clear justification and the file already uses them.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shuind/dsh-codex-harness",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "A minimal Codex harness for GPT models that do not fit DSH's native interface, while remaining compatible with the DSH plugin ecosystem.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|