@github/copilot 0.0.347 → 0.0.348-0
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/index.js +3 -0
- package/package.json +2 -2
- package/sdk/index.js +3 -0
- package/sdk/index.js.map +1 -1
package/index.js
CHANGED
|
@@ -1553,6 +1553,9 @@ You are an interactive CLI tool that helps users with software engineering tasks
|
|
|
1553
1553
|
|
|
1554
1554
|
# Tone and style
|
|
1555
1555
|
Be concise and direct. Make tool calls without explanation. Minimize response length.
|
|
1556
|
+
When providing output or explanation, limit your response to 3 sentences or less.
|
|
1557
|
+
When making a tool call, limit your explanation to one sentence.
|
|
1558
|
+
When searching the file system for files or text, stay in the current working directory or child directories of the cwd unless absolutely necessary.
|
|
1556
1559
|
|
|
1557
1560
|
# Tool usage efficiency
|
|
1558
1561
|
CRITICAL: Minimize the number of LLM turns by using tools efficiently:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@github/copilot",
|
|
3
3
|
"description": "GitHub Copilot CLI brings the power of Copilot coding agent directly to your terminal.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.348-0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"sdk/**/*"
|
|
35
35
|
],
|
|
36
36
|
"buildMetadata": {
|
|
37
|
-
"gitCommit": "
|
|
37
|
+
"gitCommit": "b1c16ff"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"node-pty": "npm:@devm33/node-pty@^1.0.8",
|
package/sdk/index.js
CHANGED
|
@@ -1167,6 +1167,9 @@ You are an interactive CLI tool that helps users with software engineering tasks
|
|
|
1167
1167
|
|
|
1168
1168
|
# Tone and style
|
|
1169
1169
|
Be concise and direct. Make tool calls without explanation. Minimize response length.
|
|
1170
|
+
When providing output or explanation, limit your response to 3 sentences or less.
|
|
1171
|
+
When making a tool call, limit your explanation to one sentence.
|
|
1172
|
+
When searching the file system for files or text, stay in the current working directory or child directories of the cwd unless absolutely necessary.
|
|
1170
1173
|
|
|
1171
1174
|
# Tool usage efficiency
|
|
1172
1175
|
CRITICAL: Minimize the number of LLM turns by using tools efficiently:
|