@forwardimpact/schema 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/README.md CHANGED
@@ -1,19 +1,27 @@
1
1
  # @forwardimpact/schema
2
2
 
3
- Schema definitions and data loading for skills, behaviours, and role frameworks.
3
+ A public site describing the data model for consumption by AI agents and
4
+ engineers.
4
5
 
5
6
  ## Role in the Vision
6
7
 
7
- The schema package defines how engineering competencies are structured. It
8
- provides the foundational data model that both human career progression and
9
- coding agent team generation build upon—ensuring consistency between how we
10
- define human roles and how agent teams understand their capabilities.
8
+ The schema app is the fundamental underpinning of all Forward Impact apps. It
9
+ defines how engineering competencies, career progression, and agent capabilities
10
+ are structured—and publishes that structure in machine-readable formats so AI
11
+ agents can reliably interpret and work with career framework data.
12
+
13
+ Making the schema well understood is a first-class goal. By publishing JSON
14
+ Schema and RDF/SHACL definitions alongside canonical example data, we ensure
15
+ that every consumer—human or AI—shares a consistent understanding of the data
16
+ model.
11
17
 
12
18
  ## What It Does
13
19
 
14
- - **Schema definitions** — JSON Schema and RDF/SHACL for skills, behaviours,
15
- disciplines, tracks, and grades
20
+ - **Public data model** — JSON Schema and RDF/SHACL definitions for skills,
21
+ behaviours, disciplines, tracks, and grades
16
22
  - **Data loading** — Parse and validate YAML data files
23
+ - **Validation** — Enforce referential integrity, required fields, and schema
24
+ compliance
17
25
  - **Index generation** — Generate browser-compatible file indexes
18
26
  - **Example data** — Canonical examples for testing and reference
19
27
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@forwardimpact/schema",
3
- "version": "0.10.0",
4
- "description": "Schema definitions and data loading for skills, behaviours, and role frameworks",
3
+ "version": "0.10.1",
4
+ "description": "Public data model for career frameworks, consumed by AI agents and engineers",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
package/src/modifiers.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Skill Modifier Helpers for Validation
3
3
  *
4
4
  * Contains only the isCapability function needed for schema validation.
5
- * Full modifier logic is in @forwardimpact/model.
5
+ * Full modifier logic is in @forwardimpact/libpathway.
6
6
  */
7
7
 
8
8
  import { Capability } from "./levels.js";