@framers/agentos-skills 0.1.0 → 0.2.0

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
@@ -73,6 +73,54 @@ const matches = searchSkills('github');
73
73
  | **@framers/agentos-skills-registry** | Typed catalog + query helpers + factories | Yes | `agentos-skills`, optionally `agentos` |
74
74
  | **@framers/agentos** | Full cognitive runtime with SkillRegistry | Yes | Many |
75
75
 
76
+ ## Contributing a Skill
77
+
78
+ 1. **Fork** the [agentos-skills](https://github.com/framersai/agentos-skills) repository.
79
+ 2. **Create** a `SKILL.md` file in `registry/community/<your-skill>/`.
80
+ 3. **Open a PR** against `main`.
81
+
82
+ See [`CONTRIBUTING.md`](https://github.com/framersai/agentos-skills/blob/main/CONTRIBUTING.md) for the full SKILL.md format spec and submission process.
83
+
84
+ ## Community vs Curated
85
+
86
+ Skills ship in two tiers, all bundled in this single package:
87
+
88
+ | Tier | Namespace | Maintained By | Verified |
89
+ | ------------- | ------------ | ------------- | :------: |
90
+ | **Curated** | `wunderland` | Core staff | Yes |
91
+ | **Community** | `community` | PR contributors | No |
92
+
93
+ Curated skills live in `registry/curated/` and are maintained and tested by the AgentOS team. Community skills live in `registry/community/` and are submitted via pull request from the community.
94
+
95
+ ## Skill Format Quick Reference
96
+
97
+ ```yaml
98
+ ---
99
+ name: my-skill
100
+ description: Short description of what this skill does
101
+ namespace: community # or 'wunderland' for curated
102
+ category: productivity # information | developer-tools | communication | productivity | devops | media | security | creative
103
+ tags: [example, template]
104
+ metadata:
105
+ openclaw:
106
+ emoji: "\U0001F4A1"
107
+ primaryEnv: MY_API_KEY # optional
108
+ os: [darwin, linux] # optional platform restriction
109
+ requires:
110
+ bins: [my-tool] # all must exist
111
+ install:
112
+ - id: brew
113
+ kind: brew
114
+ formula: my-tool
115
+ bins: [my-tool]
116
+ label: "Install via Homebrew"
117
+ ---
118
+
119
+ # My Skill
120
+
121
+ Instructions injected into the agent's system prompt go here.
122
+ ```
123
+
76
124
  ## License
77
125
 
78
126
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@framers/agentos-skills",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Community registry of skills for AgentOS (SKILL.md prompt modules)",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -18,6 +18,9 @@
18
18
  "types.d.ts",
19
19
  "README.md"
20
20
  ],
21
+ "scripts": {
22
+ "validate": "node scripts/validate-skill.mjs"
23
+ },
21
24
  "publishConfig": {
22
25
  "access": "public"
23
26
  },
File without changes
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  name: git
3
+ version: '1.0.0'
3
4
  description: Work with Git repositories from the command line.
5
+ author: Wunderland
6
+ namespace: wunderland
7
+ category: developer-tools
8
+ tags: [git, version-control, vcs, branching, commits]
9
+ requires_secrets: []
10
+ requires_tools: []
4
11
  metadata:
5
12
  agentos:
6
13
  emoji: '🧰'
package/types.d.ts CHANGED
@@ -46,6 +46,7 @@ export interface SkillCatalogEntry {
46
46
  path: string;
47
47
  description: string;
48
48
  verified: boolean;
49
+ source?: 'curated' | 'community';
49
50
  verifiedAt?: string;
50
51
  keywords?: string[];
51
52
  metadata?: SkillMetadata;