social-media-skills 0.1.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.
Files changed (2) hide show
  1. package/index.js +4 -0
  2. package/package.json +9 -0
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ console.log("\nSocial Media Skills — 106 skills for AI agents\n");
3
+ console.log("Install with: npx skills add social-media-skills/skills");
4
+ console.log("Packs & docs: https://social-media-skills.com\n");
package/package.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "social-media-skills",
3
+ "version": "0.1.0",
4
+ "description": "106 social media skills for AI agents. Install with: npx skills add social-media-skills/skills",
5
+ "bin": { "social-media-skills": "./index.js" },
6
+ "repository": "github:social-media-skills/skills",
7
+ "homepage": "https://social-media-skills.com",
8
+ "license": "MIT"
9
+ }