@noirhare/dsh-nr-agent-presets 0.0.1

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.
@@ -0,0 +1,31 @@
1
+ - id: persona
2
+ name: "@deepseek-ai/dsh-persona"
3
+ config:
4
+ text: >-
5
+ You are a coding agent powered by the {{model}} model. Your working directory is {{cwd}}.
6
+
7
+ - id: tool-todo
8
+ name: "@deepseek-ai/dsh-tool-todo"
9
+ config:
10
+ allowParallelInProgress: true
11
+
12
+ - id: tool-ask-user
13
+ name: "@deepseek-ai/dsh-tool-ask-user"
14
+
15
+ - id: tool-goal
16
+ name: "@deepseek-ai/dsh-tool-goal"
17
+
18
+ # web
19
+ - id: tool-web
20
+ name: "@deepseek-ai/dsh-tool-web"
21
+ config:
22
+ fetchProvider: "dsh-web-fetch-http"
23
+
24
+ # fs
25
+ - id: tool-fs
26
+ name: '@deepseek-ai/dsh-tool-fs'
27
+
28
+ - id: tool-fs-search
29
+ name: '@deepseek-ai/dsh-tool-fs-search'
30
+ config:
31
+ sampleOverCapGlobResults: false
@@ -0,0 +1,20 @@
1
+ - id: persona
2
+ name: "@deepseek-ai/dsh-persona"
3
+ config:
4
+ text: >-
5
+ You are a coding agent powered by the {{model}} model. Your working directory is {{cwd}}.
6
+
7
+ - id: tool-todo
8
+ name: "@deepseek-ai/dsh-tool-todo"
9
+ config:
10
+ allowParallelInProgress: true
11
+
12
+ - id: tool-ask-user
13
+ name: "@deepseek-ai/dsh-tool-ask-user"
14
+
15
+ - id: tool-goal
16
+ name: "@deepseek-ai/dsh-tool-goal"
17
+
18
+ # web
19
+ - id: tool-web
20
+ name: "@deepseek-ai/dsh-tool-web"
package/lib/index.js ADDED
@@ -0,0 +1,9 @@
1
+ import NRAgentPresets from "@noirhare/dsh-agent-presets";
2
+ import Path from "node:path";
3
+ //#region src/index.ts
4
+ const inject = [NRAgentPresets.name];
5
+ function apply(ctx) {
6
+ ctx.agentPresets.registerRoot(Path.resolve(import.meta.dirname, "agent-presets"));
7
+ }
8
+ //#endregion
9
+ export { apply, inject };
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@noirhare/dsh-nr-agent-presets",
3
+ "version": "0.0.1",
4
+ "author": "NoirHare",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/NoirHare/dsh-bundle.git",
9
+ "directory": "packages/nr-agent-presets"
10
+ },
11
+ "type": "module",
12
+ "exports": {
13
+ ".": "./lib/index.js",
14
+ "./package.json": "./package.json"
15
+ },
16
+ "files": [
17
+ "lib"
18
+ ],
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "peerDependencies": {
23
+ "@noirhare/dsh-agent-presets": "^0.0.1",
24
+ "@deepseek-ai/cordis": "^4.0.1"
25
+ },
26
+ "scripts": {
27
+ "build": "tsdown",
28
+ "dev": "tsdown --watch",
29
+ "typecheck": "tsc --noEmit"
30
+ }
31
+ }