@forwardimpact/outpost 3.1.0 → 3.1.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.
@@ -1,3 +1,5 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env node
2
2
  // Thin entry point — delegates to src/outpost.js.
3
+ import "@forwardimpact/libpreflight/node22";
4
+
3
5
  import "../src/outpost.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardimpact/outpost",
3
- "version": "3.1.0",
3
+ "version": "3.1.2",
4
4
  "description": "Personal operations center — context from email, calendar, and knowledge assembled so preparation is continuous, not a morning scramble.",
5
5
  "homepage": "https://www.forwardimpact.team",
6
6
  "repository": {
@@ -51,6 +51,7 @@
51
51
  "dependencies": {
52
52
  "@forwardimpact/libcli": "^0.1.0",
53
53
  "@forwardimpact/libmacos": "^0.1.0",
54
+ "@forwardimpact/libpreflight": "^0.1.0",
54
55
  "@forwardimpact/libtelemetry": "^0.1.33"
55
56
  },
56
57
  "devDependencies": {
@@ -58,7 +59,7 @@
58
59
  },
59
60
  "engines": {
60
61
  "bun": ">=1.2.0",
61
- "node": ">=18.0.0"
62
+ "node": ">=22.0.0"
62
63
  },
63
64
  "publishConfig": {
64
65
  "access": "public"
@@ -36,19 +36,16 @@ destructive actions.
36
36
 
37
37
  ## Dependencies
38
38
 
39
- - **ripgrep** (`rg`) — fast knowledge graph searches. Install:
39
+ - **ripgrep** (`rg`) — fast knowledge graph searches.
40
40
  `brew install ripgrep`.
41
41
 
42
42
  ## Workspace Layout
43
43
 
44
- Everything is relative to this root:
45
-
46
44
  ```
47
45
  ./
48
- ├── knowledge/ # The knowledge graph (Obsidian-compatible)
49
- ├── People/ Organizations/ Projects/ Topics/
50
- ├── Candidates/ Goals/ Priorities/ Conditions/ Roles/
51
- │ └── Tasks/ Weeklies/
46
+ ├── knowledge/ # Obsidian-compatible graph: People/ Organizations/
47
+ Projects/ Topics/ Candidates/ Goals/ Priorities/ Conditions/ Roles/
48
+ Tasks/ Weeklies/
52
49
  ├── .claude/skills/ # Auto-discovered skill files
53
50
  ├── drafts/ # Email drafts (draft-emails skill)
54
51
  ├── USER.md # Your identity — gitignored
@@ -77,16 +74,14 @@ Each agent writes `~/.cache/fit/outpost/state/{agent}_triage.md` per wake. The
77
74
 
78
75
  ## Cache Directory (`~/.cache/fit/outpost/`)
79
76
 
80
- Synced data and runtime state live outside the KB to keep it clean — only parsed
81
- knowledge, notes, and drafts live here. Top-level subdirs:
77
+ Synced data and runtime state live outside the KB. Top-level subdirs:
82
78
 
83
79
  - `apple_mail/` — Mail threads as `.md` (plus `attachments/`)
84
80
  - `apple_calendar/` — Calendar events as `.json`
85
81
  - `teams_chat/` — Teams 1:1 chats as `.md`
86
- - `head-hunter/` — head-hunter agent memory (cursor, failures, seen, prospects,
87
- log)
88
- - `state/` — runtime state: per-source last-sync timestamps, processed-file
89
- index, and `{agent}_triage.md` per agent
82
+ - `head-hunter/` — head-hunter agent memory
83
+ - `state/` — per-source last-sync timestamps, processed-file index, and
84
+ `{agent}_triage.md` per agent
90
85
 
91
86
  ## Knowledge Graph
92
87
 
@@ -129,6 +124,5 @@ generation).
129
124
 
130
125
  ## Working Outside This Directory
131
126
 
132
- You have full filesystem access (macOS). For tasks outside this knowledge base
133
- (organizing Desktop, finding files in Downloads, etc.), use shell commands
134
- directly.
127
+ You have full filesystem access (macOS). For tasks outside this KB
128
+ (organizing Desktop, finding files in Downloads), use shell commands directly.