social-autoposter 1.0.0 → 1.0.2

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": "social-autoposter",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Automated social posting pipeline for Reddit, X/Twitter, LinkedIn, and Moltbook. Install as a Claude Code agent skill.",
5
5
  "bin": {
6
6
  "social-autoposter": "bin/cli.js"
@@ -33,7 +33,7 @@
33
33
  "license": "MIT",
34
34
  "repository": {
35
35
  "type": "git",
36
- "url": "https://github.com/m13v/social-autoposter"
36
+ "url": "git+https://github.com/m13v/social-autoposter.git"
37
37
  },
38
38
  "homepage": "https://github.com/m13v/social-autoposter",
39
39
  "engines": {
@@ -59,7 +59,7 @@ def get_recent_posts(db_path, limit=5):
59
59
  return [row[0] for row in rows]
60
60
 
61
61
 
62
- def check_rate_limit(db_path, max_per_day=10):
62
+ def check_rate_limit(db_path, max_per_day=40):
63
63
  """Return (posts_today, can_post)."""
64
64
  db = sqlite3.connect(db_path)
65
65
  row = db.execute(
package/skill/SKILL.md CHANGED
@@ -61,7 +61,7 @@ python3 ~/social-autoposter/scripts/update_stats.py --quiet
61
61
  ```sql
62
62
  SELECT COUNT(*) FROM posts WHERE posted_at >= datetime('now', '-24 hours')
63
63
  ```
64
- Max 10 posts per 24 hours. Stop if at limit.
64
+ Max 40 posts per 24 hours. Stop if at limit.
65
65
 
66
66
  ### 2. Find candidate threads
67
67