@getrheo/rheo-skill 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +5 -9
  2. package/rheo/SKILL.md +1 -1
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@getrheo/rheo-skill",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
- "description": "Source + build tooling for the self-contained `rheo` agent skill (rheo-best-practices + rheo-flow-import sub-skills).",
5
+ "description": "Rheo agent skill SDK install guidance and flow manifest import tooling.",
6
6
  "main": "./src/index.ts",
7
7
  "types": "./src/index.ts",
8
8
  "exports": {
9
9
  ".": "./src/index.ts"
10
10
  },
11
11
  "dependencies": {
12
- "@getrheo/contracts": "1.0.0",
13
- "@getrheo/flow-runtime": "1.0.0"
12
+ "@getrheo/contracts": "1.0.1",
13
+ "@getrheo/flow-runtime": "1.0.1"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@types/node": "^22.10.1",
@@ -25,14 +25,10 @@
25
25
  "rheo"
26
26
  ],
27
27
  "license": "MIT",
28
- "repository": {
29
- "type": "git",
30
- "url": "git+https://github.com/madeinusmate/onboardly.git",
31
- "directory": "packages/rheo-skill"
32
- },
33
28
  "publishConfig": {
34
29
  "access": "public"
35
30
  },
31
+ "homepage": "https://docs.getrheo.io/docs/developer-guide/agent-import",
36
32
  "scripts": {
37
33
  "lint": "eslint .",
38
34
  "typecheck": "tsc --noEmit",
package/rheo/SKILL.md CHANGED
@@ -3,7 +3,7 @@ name: rheo
3
3
  description: Work with Rheo, the headless onboarding/paywall flow engine for mobile apps. Use when a user wants to install or wire the Rheo SDK (React Native, Expo, or SwiftUI), follow Rheo SDK best practices, configure integrations (RevenueCat, AppsFlyer), wire auth/permissions/terminal callbacks, OR import/migrate an existing mobile flow into a compliant Rheo FlowManifest and validate it. Routes to the `rheo-best-practices` and `rheo-flow-import` sub-skills.
4
4
  compatibility: Requires Node.js 20+. rheo-flow-import scripts are fully self-contained (no install step). Internet access fetches the latest Manifest Agent Profile; a bundled fallback works offline.
5
5
  metadata:
6
- rheo-version: "1.0.0"
6
+ rheo-version: "1.0.1"
7
7
  manifest-schema-version: "7"
8
8
  ---
9
9