@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.
- package/config/scheduler.json +10 -5
- package/package.json +1 -1
- package/src/basecamp.js +101 -729
- package/template/.claude/agents/chief-of-staff.md +14 -3
- package/template/.claude/agents/head-hunter.md +436 -0
- package/template/.claude/agents/librarian.md +1 -1
- package/template/.claude/settings.json +4 -1
- package/template/.claude/skills/analyze-cv/SKILL.md +39 -7
- package/template/.claude/skills/draft-emails/SKILL.md +29 -9
- package/template/.claude/skills/draft-emails/scripts/scan-emails.mjs +4 -4
- package/template/.claude/skills/draft-emails/scripts/send-email.mjs +41 -6
- package/template/.claude/skills/meeting-prep/SKILL.md +7 -4
- package/template/.claude/skills/process-hyprnote/SKILL.md +17 -8
- package/template/.claude/skills/process-hyprnote/scripts/scan.mjs +246 -0
- package/template/.claude/skills/scan-open-candidates/SKILL.md +476 -0
- package/template/.claude/skills/scan-open-candidates/scripts/state.mjs +396 -0
- package/template/.claude/skills/sync-apple-calendar/SKILL.md +41 -0
- package/template/.claude/skills/sync-apple-calendar/scripts/query.mjs +301 -0
- package/template/.claude/skills/synthesize-deck/SKILL.md +296 -0
- package/template/.claude/skills/synthesize-deck/scripts/extract-pptx.mjs +210 -0
- package/template/.claude/skills/track-candidates/SKILL.md +45 -0
- package/template/.claude/skills/workday-requisition/SKILL.md +86 -53
- package/template/.claude/skills/workday-requisition/scripts/parse-workday.mjs +103 -37
- package/template/CLAUDE.md +13 -3
package/config/scheduler.json
CHANGED
|
@@ -2,27 +2,32 @@
|
|
|
2
2
|
"agents": {
|
|
3
3
|
"postman": {
|
|
4
4
|
"kb": "~/Documents/Personal",
|
|
5
|
-
"schedule": { "type": "
|
|
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": "
|
|
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": "
|
|
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": "
|
|
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
|
}
|