typefully 0.1.0 → 0.1.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/README.md +8 -2
  2. package/package.json +14 -1
package/README.md CHANGED
@@ -9,7 +9,7 @@ Built on the [Typefully API](https://typefully.com/docs/api). [Typefully](https:
9
9
  ### 1. Install
10
10
 
11
11
  ```bash
12
- pnpm add -g typefully
12
+ npm i -g typefully
13
13
  ```
14
14
 
15
15
  Or use directly with npx:
@@ -18,6 +18,12 @@ Or use directly with npx:
18
18
  npx typefully --help
19
19
  ```
20
20
 
21
+ or skills for your AI agent:
22
+
23
+ ```bash
24
+ npx skills add ahmadawais/typefully-cli
25
+ ```
26
+
21
27
  ### 2. Copy your API Key
22
28
 
23
29
  You'll need a Typefully API key. Copy an existing key or create a new one at https://typefully.com/?settings=api
@@ -31,7 +37,7 @@ typefully setup
31
37
  ```
32
38
 
33
39
  > [!TIP]
34
- > You can also set the API key as an environment variable: `export TYPEFULLY_API_KEY=your_key_here`
40
+ > You can also set the API key as an environment variable: `export TYPEFULLY_API_KEY=your_key_here` but not needed if you run `typefully setup` which saves it to a config file.
35
41
 
36
42
  ### 4. Start using it
37
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typefully",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "typefully": "./dist/index.js"
@@ -20,6 +20,19 @@
20
20
  "typecheck": "tsc --noEmit",
21
21
  "format": "biome format --write ."
22
22
  },
23
+ "license": "MIT",
24
+ "keywords": [
25
+ "typefully",
26
+ "cli",
27
+ "twitter",
28
+ "x",
29
+ "threads",
30
+ "linkedin",
31
+ "social-media",
32
+ "scheduling",
33
+ "drafts",
34
+ "publishing"
35
+ ],
23
36
  "engines": {
24
37
  "node": ">=18"
25
38
  },