@opendirectory.dev/skills 0.1.24 → 0.1.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendirectory.dev/skills",
3
- "version": "0.1.24",
3
+ "version": "0.1.26",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "bin": {
@@ -4,6 +4,9 @@ import urllib.request
4
4
  import json
5
5
  import ssl
6
6
 
7
+ # Set UTF-8 encoding for standard output to support emojis
8
+ sys.stdout.reconfigure(encoding='utf-8')
9
+
7
10
  def check_domain(domain):
8
11
  print(f"Checking {domain}...")
9
12
 
@@ -1,5 +1,47 @@
1
- <img src="https://link-to-your-hosted-image.png" width="100%" alt="cover" />
2
-
3
1
  # Human Tone
4
2
 
5
- This skill rewrites AI-generated marketing copy to sound naturally human. It removes common AI cliches, adjusts the pacing, and ensures the tone is authentic and engaging.
3
+ AI assistants write terrible marketing copy. They rely on generic filler words, force everything into lists of three, and bury your actual product under layers of hype.
4
+
5
+ The Human Tone skill teaches your AI how to edit its own work. It provides strict rules for stripping out robotic patterns and rewriting text to sound like a direct conversation from a founder to a customer.
6
+
7
+ ## What It Fixes
8
+
9
+ * Removes words like "streamline", "empower", and "revolutionize".
10
+ * Stops the AI from starting emails with "I hope this finds you well".
11
+ * Forces the AI to replace vague claims with specific numbers and outcomes.
12
+ * Fixes the rigid sentence structures that make AI text obvious.
13
+
14
+ ## Installation
15
+
16
+ You can install this skill directly into your AI agent environment using the OpenDirectory command line tool.
17
+
18
+ ### Option 1: Quick Install
19
+
20
+ Run this command in your terminal to install it directly without downloading the whole directory:
21
+
22
+ ```bash
23
+ npx "@opendirectory.dev/skills" install human-tone --target opencode
24
+ ```
25
+
26
+ Note: You can change `--target opencode` to `--target claude` or `--target cursor` depending on which AI assistant you use.
27
+
28
+ ### Option 2: Global Install
29
+
30
+ If you plan to browse and install multiple skills, you can install the tool globally on your computer:
31
+
32
+ ```bash
33
+ npm install -g @opendirectory.dev/skills
34
+ opendirectory install human-tone --target opencode
35
+ ```
36
+
37
+ ## How to Use It
38
+
39
+ Once the skill is installed in your workspace, simply ask your AI to humanize your copy.
40
+
41
+ **Basic usage:**
42
+ > "Take this draft for a cold email and run it through the human-tone skill. Make it short and direct."
43
+
44
+ **Advanced usage (Matching a specific voice):**
45
+ > "Rewrite this landing page copy using the human-tone skill. Match the writing style in this sample: [paste a sample of your writing]."
46
+
47
+ The AI will rewrite the text, provide a bulleted list of what it changed, and flag any placeholders where you need to insert real numbers or actual customer names.