@heytherevibin/skillforge 0.10.0 → 0.10.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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.10.1
4
+
5
+ - **README:** Clarify that **npm** **`latest`** and **`npm view`** are authoritative for semver; note CDN/browser cache can make the shields **npm** badge lag briefly after a publish. **Badge:** add **`cacheSeconds`** so the image URL refreshes sooner.
6
+
3
7
  ## 0.10.0
4
8
 
5
9
  - **CI:** Minimum bundled **`SKILL.md`** count is configured via **`ci/bundle-gate.json`** (`minSkillMdFiles`); **`.github/workflows/ci.yml`** reads that file. The **`ci/`** directory is included in the published package **`files`** list for transparency. Health + **route-eval** step chains both commands under a single **`cd python`** so the second command does not run from **`python/python`**.
package/README.md CHANGED
@@ -1,14 +1,14 @@
1
1
  # Skillforge
2
2
 
3
3
  <p align="left">
4
- <a href="https://www.npmjs.com/package/@heytherevibin/skillforge"><img src="https://img.shields.io/npm/v/@heytherevibin/skillforge?label=npm&color=blue" alt="npm version" /></a>
4
+ <a href="https://www.npmjs.com/package/@heytherevibin/skillforge"><img src="https://img.shields.io/npm/v/@heytherevibin/skillforge?label=npm&color=blue&cacheSeconds=120" alt="npm latest version" /></a>
5
5
  <a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-green.svg" alt="License: MIT" /></a>
6
6
  <a href="https://github.com/heytherevibin/skillforge/actions/workflows/ci.yml"><img src="https://github.com/heytherevibin/skillforge/actions/workflows/ci.yml/badge.svg" alt="CI" /></a>
7
7
  </p>
8
8
 
9
9
  **Skillforge** is a **local-first orchestration layer** for agent workflows: it maintains a catalog of **`SKILL.md`** documents, **routes** a small subset per task using **embedding-first retrieval**, optional **hybrid** sparse signals and **LLM** stages, optional **project-scoped** policies and notes, and returns **structured context** for downstream models. The **primary integration** is **stdio MCP**; the **CLI** provides parity, operations, and automation hooks.
10
10
 
11
- **Published version:** see **`package.json`** and the npm badge above (they should match after each release). **Change history:** [CHANGELOG.md](CHANGELOG.md). **Product direction:** [STRATEGY.md](STRATEGY.md). **Vulnerability reporting:** [SECURITY.md](SECURITY.md). **Release process:** [RELEASING.md](RELEASING.md).
11
+ **Published version:** The **`latest`** semver on [npm](https://www.npmjs.com/package/@heytherevibin/skillforge) and **`npm view @heytherevibin/skillforge version`** are authoritative—always match the **`version`** in this package’s **`package.json`** and MCP **`serverInfo.version`** for that tarball. The npm badge above reads the same registry field; CDN or browser caches can lag right after a release, so use the version in the page header or the **`npm view`** command if the image looks stale. **Change history:** [CHANGELOG.md](CHANGELOG.md). **Product direction:** [STRATEGY.md](STRATEGY.md). **Vulnerability reporting:** [SECURITY.md](SECURITY.md). **Release process:** [RELEASING.md](RELEASING.md).
12
12
 
13
13
  ---
14
14
 
package/RELEASING.md CHANGED
@@ -5,7 +5,7 @@
5
5
  | Workflow | File | When it runs |
6
6
  |----------|------|----------------|
7
7
  | **CI** | [.github/workflows/ci.yml](.github/workflows/ci.yml) | Every **push** and **pull request** to `main`; also **`workflow_dispatch`** (run manually from the Actions tab) |
8
- | **Skillforge release** | [.github/workflows/release.yml](.github/workflows/release.yml) | When a **`v*`** tag is **pushed** to the repository (e.g. `v0.10.0`) |
8
+ | **Skillforge release** | [.github/workflows/release.yml](.github/workflows/release.yml) | When a **`v*`** tag is **pushed** to the repository (e.g. `v0.10.1`) |
9
9
 
10
10
  In the GitHub UI, open **Actions** and look for **CI** and **Skillforge release** (not the older “publish to npm” name).
11
11
 
@@ -28,14 +28,14 @@ You need the **`NPM_TOKEN`** repository secret.
28
28
 
29
29
  Create one at [npm → Access Tokens](https://www.npmjs.com/settings/~/tokens) (**Generate New Token** → **Granular Access Token**). Optionally explore [**trusted publishing** (OIDC)](https://docs.npmjs.com/trusted-publishers/) later to avoid long-lived tokens.
30
30
 
31
- 1. On `main`, set **`version`** in `package.json` to the version you are releasing (must be **unused** on npm — e.g. `0.10.0`).
31
+ 1. On `main`, set **`version`** in `package.json` to the version you are releasing (must be **unused** on npm — e.g. `0.10.1`).
32
32
  2. Match **MCP** `serverInfo.version` in `python/app/mcp_server.py` (must equal `package.json`) and add a **`CHANGELOG.md`** section for that version.
33
33
  3. Commit and **`git push origin main`**. Wait for **CI** to pass.
34
34
  4. Create a tag whose name is **`v` + that exact version**:
35
- `git tag v0.10.0 && git push origin v0.10.0`
35
+ `git tag v0.10.1 && git push origin v0.10.1`
36
36
  5. Open **Actions → Skillforge release**. The job will **fail the version check** if the tag does not match `package.json`.
37
37
  6. Confirm on npm: `npm view @heytherevibin/skillforge version`
38
- Confirm the **GitHub Release** exists with title **`Skillforge <tag>`** (e.g. **`Skillforge v0.10.0`**) and the `.tgz` asset.
38
+ Confirm the **GitHub Release** exists with title **`Skillforge <tag>`** (e.g. **`Skillforge v0.10.1`**) and the `.tgz` asset.
39
39
 
40
40
  Scoped packages require a **public** publish; the workflow already runs `npm publish --access public`.
41
41
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heytherevibin/skillforge",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "SKILL.md orchestration for AI agents: MCP-first routing with local embeddings, optional LLM stages, project RAG, policy overlays, portable learning state, and auditable telemetry.",
5
5
  "keywords": [
6
6
  "claude",
@@ -196,7 +196,7 @@ class MCPServer:
196
196
  return {
197
197
  "protocolVersion": "2024-11-05",
198
198
  "capabilities": caps,
199
- "serverInfo": {"name": "skillforge", "version": "0.10.0"},
199
+ "serverInfo": {"name": "skillforge", "version": "0.10.1"},
200
200
  }
201
201
 
202
202
  def handle_tools_list(self, params):