@harness-kernel/skills 0.0.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/NOTICE ADDED
@@ -0,0 +1,3 @@
1
+ Harness Kernel
2
+
3
+ Copyright 2026 Ducks Software and Harness Kernel contributors
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @harness-kernel/skills
2
+
3
+ Placeholder package for Harness Kernel skills. The implementation will ship from the harness-kernel monorepo.
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare const placeholder: true;
package/index.js ADDED
@@ -0,0 +1 @@
1
+ export const placeholder = true;
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@harness-kernel/skills",
3
+ "version": "0.0.0",
4
+ "type": "module",
5
+ "description": "Placeholder package for Harness Kernel skills.",
6
+ "license": "Apache-2.0",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/Ducks-Software-AI-Infrastructure/harness-kernel.git",
10
+ "directory": "packages/skills"
11
+ },
12
+ "homepage": "https://ducks-software-ai-infrastructure.github.io/harness-kernel/docs/packages/skills/",
13
+ "bugs": {
14
+ "url": "https://github.com/Ducks-Software-AI-Infrastructure/harness-kernel/issues"
15
+ },
16
+ "keywords": [
17
+ "ai",
18
+ "agents",
19
+ "skills",
20
+ "harness-kernel"
21
+ ],
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "exports": {
26
+ ".": {
27
+ "import": "./index.js",
28
+ "types": "./index.d.ts"
29
+ },
30
+ "./package.json": "./package.json"
31
+ },
32
+ "files": [
33
+ "index.js",
34
+ "index.d.ts",
35
+ "README.md",
36
+ "NOTICE"
37
+ ]
38
+ }