@forwardimpact/basecamp 1.0.0 → 2.2.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 (42) hide show
  1. package/README.md +1 -1
  2. package/config/scheduler.json +18 -17
  3. package/package.json +3 -3
  4. package/src/basecamp.js +532 -259
  5. package/template/.claude/agents/chief-of-staff.md +103 -0
  6. package/template/.claude/agents/concierge.md +75 -0
  7. package/template/.claude/agents/librarian.md +59 -0
  8. package/template/.claude/agents/postman.md +73 -0
  9. package/template/.claude/agents/recruiter.md +222 -0
  10. package/template/.claude/settings.json +0 -4
  11. package/template/.claude/skills/analyze-cv/SKILL.md +267 -0
  12. package/template/.claude/skills/create-presentations/SKILL.md +2 -2
  13. package/template/.claude/skills/create-presentations/references/slide.css +1 -1
  14. package/template/.claude/skills/create-presentations/scripts/convert-to-pdf.mjs +47 -0
  15. package/template/.claude/skills/draft-emails/SKILL.md +85 -123
  16. package/template/.claude/skills/draft-emails/scripts/scan-emails.mjs +66 -0
  17. package/template/.claude/skills/draft-emails/scripts/send-email.mjs +118 -0
  18. package/template/.claude/skills/extract-entities/SKILL.md +2 -2
  19. package/template/.claude/skills/extract-entities/scripts/state.mjs +130 -0
  20. package/template/.claude/skills/manage-tasks/SKILL.md +242 -0
  21. package/template/.claude/skills/organize-files/SKILL.md +3 -3
  22. package/template/.claude/skills/organize-files/scripts/organize-by-type.mjs +105 -0
  23. package/template/.claude/skills/organize-files/scripts/summarize.mjs +84 -0
  24. package/template/.claude/skills/process-hyprnote/SKILL.md +2 -2
  25. package/template/.claude/skills/send-chat/SKILL.md +170 -0
  26. package/template/.claude/skills/sync-apple-calendar/SKILL.md +5 -5
  27. package/template/.claude/skills/sync-apple-calendar/scripts/sync.mjs +325 -0
  28. package/template/.claude/skills/sync-apple-mail/SKILL.md +6 -6
  29. package/template/.claude/skills/sync-apple-mail/scripts/parse-emlx.mjs +374 -0
  30. package/template/.claude/skills/sync-apple-mail/scripts/sync.mjs +629 -0
  31. package/template/.claude/skills/track-candidates/SKILL.md +375 -0
  32. package/template/.claude/skills/weekly-update/SKILL.md +250 -0
  33. package/template/CLAUDE.md +73 -29
  34. package/template/knowledge/Briefings/.gitkeep +0 -0
  35. package/template/.claude/skills/create-presentations/scripts/convert-to-pdf.js +0 -32
  36. package/template/.claude/skills/draft-emails/scripts/scan-emails.sh +0 -34
  37. package/template/.claude/skills/extract-entities/scripts/state.py +0 -100
  38. package/template/.claude/skills/organize-files/scripts/organize-by-type.sh +0 -42
  39. package/template/.claude/skills/organize-files/scripts/summarize.sh +0 -21
  40. package/template/.claude/skills/sync-apple-calendar/scripts/sync.py +0 -242
  41. package/template/.claude/skills/sync-apple-mail/scripts/parse-emlx.py +0 -104
  42. package/template/.claude/skills/sync-apple-mail/scripts/sync.py +0 -455
package/README.md CHANGED
@@ -65,7 +65,7 @@ To uninstall, run `just uninstall` from the source tree.
65
65
  ## Install from Source
66
66
 
67
67
  ```bash
68
- cd apps/basecamp
68
+ cd products/basecamp
69
69
 
70
70
  # Run the scheduler in dev mode
71
71
  just daemon
@@ -1,28 +1,29 @@
1
1
  {
2
- "tasks": {
3
- "sync-apple-mail": {
2
+ "agents": {
3
+ "postman": {
4
4
  "kb": "~/Documents/Personal",
5
5
  "schedule": { "type": "interval", "minutes": 5 },
6
- "enabled": true,
7
- "agent": null,
8
- "skill": "sync-apple-mail",
9
- "prompt": "Sync Apple Mail. Only process new threads since last sync."
6
+ "enabled": true
10
7
  },
11
- "sync-apple-calendar": {
8
+ "concierge": {
12
9
  "kb": "~/Documents/Personal",
13
- "schedule": { "type": "interval", "minutes": 5 },
14
- "enabled": true,
15
- "agent": null,
16
- "skill": "sync-apple-calendar",
17
- "prompt": "Sync Apple Calendar events. Export events from the past 14 days and next 14 days."
10
+ "schedule": { "type": "interval", "minutes": 10 },
11
+ "enabled": true
18
12
  },
19
- "extract-entities": {
13
+ "librarian": {
20
14
  "kb": "~/Documents/Personal",
21
15
  "schedule": { "type": "interval", "minutes": 15 },
22
- "enabled": true,
23
- "agent": null,
24
- "skill": "extract-entities",
25
- "prompt": "Process any new synced data (emails and calendar events) into knowledge graph notes."
16
+ "enabled": true
17
+ },
18
+ "chief-of-staff": {
19
+ "kb": "~/Documents/Personal",
20
+ "schedule": { "type": "cron", "expression": "0 7,18 * * *" },
21
+ "enabled": true
22
+ },
23
+ "recruiter": {
24
+ "kb": "~/Documents/Personal",
25
+ "schedule": { "type": "interval", "minutes": 30 },
26
+ "enabled": true
26
27
  }
27
28
  }
28
29
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@forwardimpact/basecamp",
3
- "version": "1.0.0",
4
- "description": "Claude Code-native personal knowledge system with scheduled tasks",
3
+ "version": "2.2.0",
4
+ "description": "Claude Code-native personal knowledge system with autonomous agents",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/forwardimpact/monorepo",
9
- "directory": "apps/basecamp"
9
+ "directory": "products/basecamp"
10
10
  },
11
11
  "homepage": "https://www.forwardimpact.team/basecamp",
12
12
  "type": "module",