@sanity/ailf-studio 0.1.18 → 0.1.19

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.
Files changed (2) hide show
  1. package/README.md +14 -15
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @sanity/ailf-studio
2
2
 
3
+ > ⚠️ **Internal package.** This package is published publicly for convenience
4
+ > but is intended for internal Sanity use only. APIs and schemas may change
5
+ > without notice. No support is provided for external consumers.
6
+
3
7
  Sanity Studio dashboard plugin for the **AI Literacy Framework**. Visualizes
4
8
  evaluation reports, score trends, comparisons, and content impact — directly
5
9
  inside Sanity Studio with no external backend.
@@ -17,10 +21,6 @@ AILF reports are stored.
17
21
  pnpm add @sanity/ailf-studio
18
22
  ```
19
23
 
20
- > **Note:** The package is published with `restricted` access to the `@sanity`
21
- > npm scope. You need an npm token with read access — see the root
22
- > [README](../../README.md#obtain-secrets) for how to obtain one.
23
-
24
24
  #### Within the monorepo
25
25
 
26
26
  ```bash
@@ -137,8 +137,9 @@ registration step needed. There are four ways to execute tasks:
137
137
  | **CLI pipeline** | `ailf pipeline` (with optional `--area`/`--task`/`--tag` filters) | All enabled tasks |
138
138
  | **Scheduled pipeline** | GitHub Actions cron (daily + weekly) | All enabled tasks |
139
139
 
140
- See [CONTRIBUTING_TASKS.md](../../docs/CONTRIBUTING_TASKS.md#running-your-task)
141
- for the full execution flow and details on each method.
140
+ See the
141
+ [CONTRIBUTING_TASKS](https://github.com/sanity-labs/ai-literacy-framework/blob/main/docs/CONTRIBUTING_TASKS.md#running-your-task)
142
+ guide for the full execution flow and details on each method.
142
143
 
143
144
  ## Dashboard Views
144
145
 
@@ -215,15 +216,13 @@ To point it at a dedicated report dataset, configure the Studio's dataset:
215
216
 
216
217
  ```ts
217
218
  export default defineConfig({
218
- projectId: "3do82whm",
219
- dataset: "my-report-dataset", // or use AILF_REPORT_DATASET
219
+ projectId: "<your-project-id>",
220
+ dataset: "my-report-dataset",
220
221
  plugins: [ailfPlugin()],
221
222
  })
222
223
  ```
223
224
 
224
- Reports are written by the evaluation pipeline (`ailf pipeline --publish`). See
225
- the [report store design docs](../../docs/design-docs/report-store/index.md) for
226
- the full architecture.
225
+ Reports are written by the evaluation pipeline (`ailf pipeline --publish`).
227
226
 
228
227
  ## Exported API
229
228
 
@@ -336,9 +335,9 @@ consuming Studio's bundler (Vite) handles the final bundle.
336
335
 
337
336
  ## Related Documentation
338
337
 
339
- - [Report Store Design](../../docs/design-docs/report-store/index.md) — full
340
- architecture and implementation plan
341
- - [Visibility & Workflows](../../docs/design-docs/report-store/visibility-workflows.md)
338
+ - [Report Store Design](https://github.com/sanity-labs/ai-literacy-framework/blob/main/docs/design-docs/report-store/index.md)
339
+ — full architecture and implementation plan
340
+ - [Visibility & Workflows](https://github.com/sanity-labs/ai-literacy-framework/blob/main/docs/design-docs/report-store/visibility-workflows.md)
342
341
  — design rationale for the dashboard views
343
- - [Report Store Architecture](../../docs/design-docs/report-store/architecture.md)
342
+ - [Report Store Architecture](https://github.com/sanity-labs/ai-literacy-framework/blob/main/docs/design-docs/report-store/architecture.md)
344
343
  — Sanity Content Lake as the system of record
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@sanity/ailf-studio",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "AI Literacy Framework — Sanity Studio dashboard plugin",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "private": false,
8
8
  "publishConfig": {
9
- "access": "restricted"
9
+ "access": "public"
10
10
  },
11
11
  "repository": {
12
12
  "type": "git",