@forwardimpact/basecamp 2.4.2 → 2.6.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 (24) hide show
  1. package/config/scheduler.json +10 -5
  2. package/package.json +1 -1
  3. package/src/basecamp.js +101 -729
  4. package/template/.claude/agents/chief-of-staff.md +14 -3
  5. package/template/.claude/agents/head-hunter.md +436 -0
  6. package/template/.claude/agents/librarian.md +1 -1
  7. package/template/.claude/settings.json +4 -1
  8. package/template/.claude/skills/analyze-cv/SKILL.md +39 -7
  9. package/template/.claude/skills/draft-emails/SKILL.md +29 -9
  10. package/template/.claude/skills/draft-emails/scripts/scan-emails.mjs +4 -4
  11. package/template/.claude/skills/draft-emails/scripts/send-email.mjs +41 -6
  12. package/template/.claude/skills/meeting-prep/SKILL.md +7 -4
  13. package/template/.claude/skills/process-hyprnote/SKILL.md +17 -8
  14. package/template/.claude/skills/process-hyprnote/scripts/scan.mjs +246 -0
  15. package/template/.claude/skills/scan-open-candidates/SKILL.md +476 -0
  16. package/template/.claude/skills/scan-open-candidates/scripts/state.mjs +396 -0
  17. package/template/.claude/skills/sync-apple-calendar/SKILL.md +41 -0
  18. package/template/.claude/skills/sync-apple-calendar/scripts/query.mjs +301 -0
  19. package/template/.claude/skills/synthesize-deck/SKILL.md +296 -0
  20. package/template/.claude/skills/synthesize-deck/scripts/extract-pptx.mjs +210 -0
  21. package/template/.claude/skills/track-candidates/SKILL.md +45 -0
  22. package/template/.claude/skills/workday-requisition/SKILL.md +86 -53
  23. package/template/.claude/skills/workday-requisition/scripts/parse-workday.mjs +103 -37
  24. package/template/CLAUDE.md +13 -3
@@ -2,27 +2,32 @@
2
2
  "agents": {
3
3
  "postman": {
4
4
  "kb": "~/Documents/Personal",
5
- "schedule": { "type": "interval", "minutes": 5 },
5
+ "schedule": { "type": "cron", "expression": "*/15 8-18 * * 1-5" },
6
6
  "enabled": true
7
7
  },
8
8
  "concierge": {
9
9
  "kb": "~/Documents/Personal",
10
- "schedule": { "type": "interval", "minutes": 10 },
10
+ "schedule": { "type": "cron", "expression": "*/30 8-18 * * 1-5" },
11
11
  "enabled": true
12
12
  },
13
13
  "librarian": {
14
14
  "kb": "~/Documents/Personal",
15
- "schedule": { "type": "interval", "minutes": 15 },
15
+ "schedule": { "type": "cron", "expression": "0 9,12,15,18 * * 1-5" },
16
16
  "enabled": true
17
17
  },
18
18
  "chief-of-staff": {
19
19
  "kb": "~/Documents/Personal",
20
- "schedule": { "type": "cron", "expression": "0 7,18 * * *" },
20
+ "schedule": { "type": "cron", "expression": "0 7,18 * * 1-5" },
21
21
  "enabled": true
22
22
  },
23
23
  "recruiter": {
24
24
  "kb": "~/Documents/Personal",
25
- "schedule": { "type": "interval", "minutes": 30 },
25
+ "schedule": { "type": "cron", "expression": "0 8,12,17 * * 1-5" },
26
+ "enabled": true
27
+ },
28
+ "head-hunter": {
29
+ "kb": "~/Documents/Personal",
30
+ "schedule": { "type": "cron", "expression": "0 9 * * 1-5" },
26
31
  "enabled": true
27
32
  }
28
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardimpact/basecamp",
3
- "version": "2.4.2",
3
+ "version": "2.6.0",
4
4
  "description": "Claude Code-native personal knowledge system with autonomous agents",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {