@lifeaitools/rdc-skills 0.35.0 → 0.35.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.
@@ -35,7 +35,7 @@ All fields are required unless marked optional.
35
35
  ---
36
36
  schema_version: "1.0" # (required) always "1.0" for this revision
37
37
  entity_slug: <slug> # (required) matches app_deployments.app_slug
38
- artifact_type: <type> # (required) one of: website | api | package | worker | mcp-server
38
+ artifact_type: <type> # (required) one of: website | api | package | worker | mcp-server | financial-model
39
39
  environments: [dev] # (required) array; subset of: dev, prod
40
40
  status: active # (required) one of: active | draft | deprecated
41
41
  notes: "" # (optional) free-text, ignored by validator
@@ -48,7 +48,7 @@ notes: "" # (optional) free-text, ignored by validator
48
48
  |-------|------|----------|---------------|
49
49
  | `schema_version` | string | yes | `"1.0"` |
50
50
  | `entity_slug` | string | yes | must match `app_deployments.app_slug` |
51
- | `artifact_type` | string | yes | `website` · `api` · `package` · `worker` · `mcp-server` |
51
+ | `artifact_type` | string | yes | `website` · `api` · `package` · `worker` · `mcp-server` · `financial-model` |
52
52
  | `environments` | string[] | yes | subset of `[dev, prod]`; at least one required |
53
53
  | `status` | string | yes | `active` · `draft` · `deprecated` |
54
54
  | `notes` | string | no | free-text annotation |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lifeaitools/rdc-skills",
3
- "version": "0.35.0",
3
+ "version": "0.35.1",
4
4
  "description": "RDC typed-agent dispatch skill suite for Claude Code - plan, build, review, overnight builds",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -104,7 +104,7 @@ const CLAUTH_BASE = 'http://127.0.0.1:52437';
104
104
  const MONOREPO_SEARCH_DIRS = ['apps', 'sites', 'models', 'mcp-servers', 'packages'];
105
105
 
106
106
  const REQUIRED_FRONTMATTER_FIELDS = ['schema_version', 'entity_slug', 'artifact_type', 'environments', 'status'];
107
- const ALLOWED_ARTIFACT_TYPES = ['website', 'api', 'package', 'worker', 'mcp-server'];
107
+ const ALLOWED_ARTIFACT_TYPES = ['website', 'api', 'package', 'worker', 'mcp-server', 'financial-model'];
108
108
  const ALLOWED_STATUSES = ['active', 'draft', 'deprecated'];
109
109
  const ALLOWED_ENVIRONMENTS = ['dev', 'prod'];
110
110
  const ALLOWED_SCHEMA_VERSIONS = ['1.0'];