openclaw-skill-templates 1.0.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 ADDED
@@ -0,0 +1,43 @@
1
+ # OpenClaw Skill Templates
2
+
3
+ Production-ready skill templates. Copy, customize, deploy.
4
+
5
+ ## Included Skills
6
+
7
+ ### 1. Research Skill
8
+ Deep web research with summarization.
9
+
10
+ ### 2. Summarizer Skill
11
+ Extract summaries from URLs, documents, or text.
12
+
13
+ ### 3. API Wrapper Skill
14
+ Generic API wrapper for integrating external services.
15
+
16
+ ### 4. Scheduler Skill
17
+ Schedule tasks and reminders.
18
+
19
+ ### 5. Data Transformer Skill
20
+ Transform data between formats (JSON, CSV, etc).
21
+
22
+ ## Usage
23
+
24
+ Each skill is in its own folder with:
25
+ - `SKILL.md` — Full documentation
26
+ - `bin/` — Executable (if CLI)
27
+ - `examples/` — Usage examples
28
+
29
+ Validate each with skill-validator:
30
+ ```bash
31
+ skill-validator validate skills/*/SKILL.md
32
+ ```
33
+
34
+ ## Installation
35
+
36
+ Copy the skill folder into your OpenClaw workspace:
37
+ ```bash
38
+ cp -r skills/research ~/.openclaw/workspace/skills/
39
+ ```
40
+
41
+ ## License
42
+
43
+ MIT - Use freely in your projects
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "openclaw-skill-templates",
3
+ "version": "1.0.0",
4
+ "description": "Production-ready skill templates. Copy, customize, deploy.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "ISC"
12
+ }
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: api-wrapper
3
+ description: Generic API wrapper for integrating external REST services
4
+ ---
5
+
6
+ # API Wrapper Skill
7
+
8
+ Connect any REST API to your OpenClaw agent.
9
+
10
+ ## Overview
11
+
12
+ Template for wrapping REST APIs with:
13
+ - Authentication (Bearer, API key, basic auth)
14
+ - Rate limiting
15
+ - Retry logic
16
+ - Response parsing
17
+ - Error handling
18
+
19
+ ## Parameters
20
+
21
+ - `endpoint` (required) - API URL
22
+ - `method` (optional) - HTTP method (default: GET)
23
+ - `auth` (optional) - Authentication type
24
+ - `params` (optional) - Query parameters
25
+
26
+ ## Examples
27
+
28
+ Configure for your API and use.
29
+
30
+ ## License
31
+
32
+ MIT
@@ -0,0 +1,68 @@
1
+ ---
2
+ name: research
3
+ description: Deep web research skill with summarization and source tracking
4
+ ---
5
+
6
+ # Research Skill
7
+
8
+ Autonomous research capability - fetch, analyze, and summarize web content.
9
+
10
+ ## Overview
11
+
12
+ This skill enables an agent to:
13
+ - Search the web for information
14
+ - Fetch and parse web pages
15
+ - Summarize findings
16
+ - Track sources
17
+ - Compile research reports
18
+
19
+ ## Parameters
20
+
21
+ - `query` (required) - What to research
22
+ - `depth` (optional, 1-5) - How deep to search (default: 3)
23
+ - `format` (optional) - Output format: json|markdown|plaintext
24
+
25
+ ## Returns
26
+
27
+ ```json
28
+ {
29
+ "query": "AI agents 2026",
30
+ "sources": [
31
+ {
32
+ "title": "...",
33
+ "url": "...",
34
+ "summary": "...",
35
+ "relevance": 0.95
36
+ }
37
+ ],
38
+ "synthesis": "...",
39
+ "confidence": 0.88
40
+ }
41
+ ```
42
+
43
+ ## Examples
44
+
45
+ ```bash
46
+ # Simple research
47
+ research --query "OpenClaw agents"
48
+
49
+ # Deep dive with markdown output
50
+ research --query "AI agent business models" --depth 5 --format markdown
51
+
52
+ # Save to file
53
+ research --query "cryptocurrency trends" > report.json
54
+ ```
55
+
56
+ ## Error Handling
57
+
58
+ - Network errors: Returns cached data if available
59
+ - Parse errors: Skips malformed sources, continues research
60
+ - No results: Returns empty sources array with note
61
+
62
+ ## Implementation
63
+
64
+ Uses web_fetch + summarization to gather information.
65
+
66
+ ## License
67
+
68
+ MIT
@@ -0,0 +1,38 @@
1
+ ---
2
+ name: summarizer
3
+ description: Extract and generate summaries from various content sources
4
+ ---
5
+
6
+ # Summarizer Skill
7
+
8
+ Extract key information and generate concise summaries.
9
+
10
+ ## Overview
11
+
12
+ Summarizes:
13
+ - Web pages
14
+ - Documents
15
+ - Text passages
16
+ - Articles
17
+ - Reports
18
+
19
+ ## Parameters
20
+
21
+ - `content` (required) - Text/URL to summarize
22
+ - `length` (optional) - Output length: short|medium|long
23
+ - `format` (optional) - Format: bullets|paragraphs|tldr
24
+
25
+ ## Returns
26
+
27
+ Structured summary with key points, main idea, and confidence score.
28
+
29
+ ## Examples
30
+
31
+ ```bash
32
+ summarizer --content "https://example.com/article"
33
+ summarizer --content "long_text.txt" --length short --format bullets
34
+ ```
35
+
36
+ ## License
37
+
38
+ MIT