dsh-pentester 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.
package/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 fb0sh
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction.
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # dsh-pentester
2
+
3
+ Pentesting agent plugin for DeepSeek Harness.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ dsh plugin --profile web add dsh-pentester
9
+ ````
10
+
11
+ ## Status
12
+
13
+ Early development.
@@ -0,0 +1,3 @@
1
+ - insert:
2
+ - id: dsh-pentester
3
+ name: dsh-pentester
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ export const name = "dsh-pentester";
2
+
3
+ export function apply() {
4
+ console.log("[dsh-pentester] loaded");
5
+ }
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "dsh-pentester",
3
+ "version": "0.0.1",
4
+ "description": "Pentesting agent plugin for DeepSeek Harness",
5
+ "type": "module",
6
+ "main": "./index.js",
7
+ "files": [
8
+ "index.js",
9
+ "cordis.patch.yml",
10
+ "README.md",
11
+ "LICENSE"
12
+ ],
13
+ "keywords": [
14
+ "dsh",
15
+ "deepseek",
16
+ "deepseek-harness",
17
+ "dsh-plugin",
18
+ "pentester",
19
+ "pentesting",
20
+ "security"
21
+ ],
22
+ "license": "MIT",
23
+ "dsh": {
24
+ "bundle": {
25
+ "patch": "./cordis.patch.yml"
26
+ }
27
+ }
28
+ }