@okf-harness/agent-pack 0.1.0 → 0.2.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/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Adapter renderer package for OKF Harness agent guidance. It renders shared Claude Code and Codex instructions from one source so workspace setup stays consistent across supported agents.
4
4
 
5
- OKF Harness is an independent open-source project built on [Andrej Karpathy's LLM Wiki](https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f) pattern and Google's [Open Knowledge Format](https://cloud.google.com/blog/products/data-analytics/how-the-open-knowledge-format-can-improve-data-sharing) / [OKF specification](https://github.com/GoogleCloudPlatform/knowledge-catalog/blob/main/okf/SPEC.md).
5
+ OKF Harness is an independent open-source project built on Andrej Karpathy's [LLM Wiki](https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f) pattern and Google's [Open Knowledge Format](https://cloud.google.com/blog/products/data-analytics/how-the-open-knowledge-format-can-improve-data-sharing) / [OKF specification](https://github.com/GoogleCloudPlatform/knowledge-catalog/blob/main/okf/SPEC.md).
6
6
 
7
7
  Most users should install the CLI instead:
8
8
 
package/dist/index.js CHANGED
@@ -5,14 +5,14 @@ var packageInfo = {
5
5
  name: "@okf-harness/agent-pack",
6
6
  role: "agent-pack"
7
7
  };
8
- var defaultVersion = "0.1";
8
+ var defaultVersion = "0.2";
9
9
  var managedBlockStart = "<!-- OKF Harness: start -->";
10
10
  var managedBlockEnd = "<!-- OKF Harness: end -->";
11
11
  var skillTemplates = [
12
12
  {
13
13
  name: "okf-harness-init",
14
14
  title: "OKF Harness Init",
15
- description: "Initialize and organize an OKF Harness workspace on macOS, including folders, git, OKF bundle files, and Claude/Codex adapters. Use when the user asks to set up, create, initialize, organize, or install OKF Harness support. Do not use for ingesting an already-added source.",
15
+ description: "Initialize and organize a local OKF Harness workspace, including folders, git, OKF bundle files, and Claude/Codex adapters. Use when the user asks to set up, create, initialize, organize, or install OKF Harness support. Do not use for ingesting an already-added source.",
16
16
  summary: "Use this skill to create a workspace or repair Claude/Codex adapter support.",
17
17
  requiredBehavior: [
18
18
  "Locate or choose the workspace path with the user.",
@@ -418,7 +418,7 @@ function renderSkill(skill, version) {
418
418
  name: ${skill.name}
419
419
  description: ${skill.description}
420
420
  license: Apache-2.0
421
- compatibility: Designed for Claude Code and Codex on macOS. Requires the okfh CLI and local shell command access.
421
+ compatibility: Designed for Claude Code and Codex with local shell command access. Requires the okfh CLI.
422
422
  metadata:
423
423
  okf-harness-version: "${version}"
424
424
  okf-harness-managed: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@okf-harness/agent-pack",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Claude and Codex adapter renderers and shared skill templates.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",