@esoteric-logic/praxis-harness 3.3.0 → 3.4.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.
@@ -39,15 +39,14 @@ Do NOT show "Work on praxis" or "Work on maximus" or any project name — the en
39
39
 
40
40
  Platform outputs use suffixed filenames so users can distinguish them at a glance:
41
41
 
42
- | Platform | Output Filename | Budget | When |
43
- |----------|----------------|--------|------|
44
- | Claude Projects | `system-prompt.md` | 5,000 chars | Standalone projects |
45
- | Claude Projects | `project-instructions-claude-desktop.md` | 2,500 chars | Compiled projects (compiler output) |
46
- | Perplexity Spaces | `space-instructions-perplexity.md` | 4,000 chars | All projects |
42
+ | Platform | Output Filename | Budget |
43
+ |----------|----------------|--------|
44
+ | Claude Projects | `system-prompt.md` | 5,000 chars |
45
+ | Perplexity Spaces | `space-instructions-perplexity.md` | 4,000 chars |
47
46
 
48
- Each project has exactly **2 output files** — one for Claude Projects, one for Perplexity Spaces.
49
- - Standalone: `system-prompt.md` + `space-instructions-perplexity.md`
50
- - Compiled: `project-instructions-claude-desktop.md` + `space-instructions-perplexity.md`
47
+ Each project has exactly **2 output files** — one per platform, same filenames regardless of mode.
48
+ - `system-prompt.md` standalone: hand-written, compiled: generated from profile blocks
49
+ - `space-instructions-perplexity.md` standalone: condensed from system-prompt, compiled: assembled from blocks
51
50
 
52
51
  Claude Code `CLAUDE.md` is NOT generated by this skill — use `px-scaffold`.
53
52
 
@@ -447,7 +446,7 @@ node bin/prompt-compile.js <project-name>
447
446
 
448
447
  **Claude Desktop / Projects (claude.ai):**
449
448
  1. Open project at claude.ai/projects → "Set project instructions"
450
- 2. Paste `system-prompt.md` (standalone) or `project-instructions-claude-desktop.md` (compiled)
449
+ 2. Paste `system-prompt.md`
451
450
  3. If `references/` exists: upload each `.md` file as project knowledge
452
451
  4. Save
453
452
 
@@ -493,7 +492,7 @@ Print deployment reminders for any project with changes.
493
492
  ### 6a. Read all project files
494
493
  1. Read `prompt-config.yaml` for project metadata
495
494
  2. Read `system-prompt.md` (source of truth)
496
- 3. Read platform outputs (`system-prompt.md` or `project-instructions-claude-desktop.md`, `space-instructions-perplexity.md`)
495
+ 3. Read platform outputs (`system-prompt.md`, `space-instructions-perplexity.md`)
497
496
  4. Read all files in `references/` directory
498
497
  5. List any other files in the project folder
499
498
 
@@ -509,8 +508,7 @@ Check each file against these criteria:
509
508
  - Are all referenced knowledge files present in references/?
510
509
 
511
510
  **Budget checks:**
512
- - `system-prompt.md` under 5,000 chars? (standalone)
513
- - `project-instructions-claude-desktop.md` under 2,500 chars? (compiled)
511
+ - `system-prompt.md` under 5,000 chars?
514
512
  - `space-instructions-perplexity.md` under 4,000 chars?
515
513
 
516
514
  **Currency checks (via Perplexity):**
@@ -737,7 +735,7 @@ Maximus PP: 2 contracts at IRS (from USASpending)
737
735
  Gaps: Key personnel [RESEARCH NEEDED]
738
736
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
739
737
  Files created:
740
- project-instructions-claude-desktop.md (2,480 chars) — compiled from profile
738
+ system-prompt.md (2,480 chars) — compiled from profile
741
739
  ✓ space-instructions-perplexity.md (3,976 chars) — deal-specific research domains
742
740
  ✓ references/irs-masterfile-intel.md
743
741
  ✓ knowledge/deal-context.md
@@ -930,7 +928,7 @@ Determine which platforms are targets from `prompt-config.yaml`.
930
928
  ### 11b. Deploy sequence (per platform)
931
929
 
932
930
  **For Claude Projects / Desktop:**
933
- 1. Determine file: `system-prompt.md` (standalone) or `project-instructions-claude-desktop.md` (compiled)
931
+ 1. Read `system-prompt.md`
934
932
  2. Copy to clipboard: `cat <file> | pbcopy`
935
933
  3. Print: "Copied to clipboard. Paste at: claude.ai/projects → Set project instructions"
936
934
  4. List knowledge files to upload: all `.md` files from `references/` AND `knowledge/`
@@ -1102,8 +1100,7 @@ NEXT GATE CHECKLIST: Pre-Proposal
1102
1100
  - **Claude Code CLAUDE.md**: NOT generated by px-prompt — use px-scaffold
1103
1101
 
1104
1102
  ### File naming
1105
- - Standalone Claude Projects output: `system-prompt.md`
1106
- - Compiled Claude Projects output: `project-instructions-claude-desktop.md`
1103
+ - Claude Projects output: `system-prompt.md` (all modes)
1107
1104
  - Perplexity output: `space-instructions-perplexity.md`
1108
1105
 
1109
1106
  ### Quality defaults (mandatory in all generated prompts)
@@ -57,7 +57,7 @@ function discoverAllProjects() {
57
57
 
58
58
  const CHAR_BUDGETS = {
59
59
  'claude-code': Infinity,
60
- 'claude-project': 2500,
60
+ 'claude-project': 5000,
61
61
  'perplexity-space': 4000,
62
62
  };
63
63
 
@@ -90,7 +90,6 @@ function validateStandalone(projectName, projectDir, projectConfig) {
90
90
  const inventory = [
91
91
  { file: 'system-prompt.md', budget: 5000, required: true, label: 'System Prompt (Source)' },
92
92
  { file: 'space-instructions-perplexity.md', budget: CHAR_BUDGETS['perplexity-space'], required: false, label: 'Perplexity Space' },
93
- { file: 'CLAUDE.md', budget: Infinity, required: false, label: 'Claude Code' },
94
93
  ];
95
94
 
96
95
  const results = [];
@@ -214,7 +213,7 @@ function compileProject(projectName, targets, projectDirOverride, clientDirOverr
214
213
 
215
214
  const outputNames = {
216
215
  'claude-code': 'CLAUDE.md',
217
- 'claude-project': 'project-instructions-claude-desktop.md',
216
+ 'claude-project': 'system-prompt.md',
218
217
  'perplexity-space': 'space-instructions-perplexity.md',
219
218
  };
220
219
 
@@ -303,8 +302,8 @@ function main() {
303
302
  console.log('No projects found.');
304
303
  process.exit(0);
305
304
  }
306
- console.log(`${'Project'.padEnd(28)} ${'Mode'.padEnd(12)} ${'System Prompt'.padEnd(15)} ${'Claude Desktop'.padEnd(15)} ${'Perplexity'.padEnd(15)} Refs`);
307
- console.log('-'.repeat(105));
305
+ console.log(`${'Project'.padEnd(28)} ${'Mode'.padEnd(12)} ${'System Prompt'.padEnd(15)} ${'Perplexity'.padEnd(15)} Refs`);
306
+ console.log('-'.repeat(85));
308
307
  for (const proj of allProjects) {
309
308
  const cfgPath = path.join(proj.dir, 'prompt-config.yaml');
310
309
  const cfg = fs.existsSync(cfgPath) ? yaml.load(fs.readFileSync(cfgPath, 'utf8')) : {};
@@ -319,7 +318,7 @@ function main() {
319
318
  ? fs.readdirSync(refsDir).filter((f) => f.endsWith('.md')).length
320
319
  : 0;
321
320
  console.log(
322
- `${proj.name.padEnd(28)} ${mode.padEnd(12)} ${fileStatus('system-prompt.md').padEnd(15)} ${fileStatus('project-instructions-claude-desktop.md').padEnd(15)} ${fileStatus('space-instructions-perplexity.md').padEnd(15)} ${refCount}`
321
+ `${proj.name.padEnd(28)} ${mode.padEnd(12)} ${fileStatus('system-prompt.md').padEnd(15)} ${fileStatus('space-instructions-perplexity.md').padEnd(15)} ${refCount}`
323
322
  );
324
323
  }
325
324
  process.exit(0);
@@ -339,7 +338,7 @@ function main() {
339
338
  console.log('\n\x1b[1mPROMPT ENGINE DASHBOARD\x1b[0m');
340
339
  console.log('\x1b[90m' + '━'.repeat(110) + '\x1b[0m');
341
340
  console.log(
342
- `${'Project'.padEnd(24)} ${'Mode'.padEnd(12)} ${'Claude Proj'.padEnd(14)} ${'Perplexity'.padEnd(14)} ${'Refs'.padEnd(6)} ${'Updated'.padEnd(12)} Stale?`
341
+ `${'Project'.padEnd(24)} ${'Mode'.padEnd(12)} ${'System Prompt'.padEnd(14)} ${'Perplexity'.padEnd(14)} ${'Refs'.padEnd(6)} ${'Updated'.padEnd(12)} Stale?`
343
342
  );
344
343
  console.log('\x1b[90m' + '─'.repeat(110) + '\x1b[0m');
345
344
 
@@ -372,7 +371,7 @@ function main() {
372
371
  const stale = daysSince > STALE_DAYS ? '\x1b[31mYes\x1b[0m' : '\x1b[32mNo\x1b[0m';
373
372
 
374
373
  console.log(
375
- `${proj.name.padEnd(24)} ${mode.padEnd(12)} ${fileBudget('project-instructions-claude-desktop.md', CHAR_BUDGETS['claude-project']).padEnd(23)} ${fileBudget('space-instructions-perplexity.md', CHAR_BUDGETS['perplexity-space']).padEnd(23)} ${String(refCount).padEnd(6)} ${updated.padEnd(12)} ${stale}`
374
+ `${proj.name.padEnd(24)} ${mode.padEnd(12)} ${fileBudget('system-prompt.md', CHAR_BUDGETS['claude-project']).padEnd(23)} ${fileBudget('space-instructions-perplexity.md', CHAR_BUDGETS['perplexity-space']).padEnd(23)} ${String(refCount).padEnd(6)} ${updated.padEnd(12)} ${stale}`
376
375
  );
377
376
  }
378
377
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esoteric-logic/praxis-harness",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "description": "Layered Claude Code harness — workflow discipline, AI-Kits, persistent vault integration",
5
5
  "bin": {
6
6
  "praxis-harness": "./bin/praxis.js",
@@ -3,16 +3,16 @@
3
3
  ## Customer
4
4
  - **Agency**: Office of Personnel Management (OPM)
5
5
  - **Program**: BENEFEDS — Federal Employee Benefits Enrollment & Premium Administration
6
- - **Key Personnel**: {{key_personnel}}
6
+ - **Key Personnel**: [RESEARCH NEEDED]
7
7
 
8
8
  ## Opportunity
9
- - **Contract Vehicle**: {{contract_vehicle}}
9
+ - **Contract Vehicle**: Full and open competition (conventional procurement)
10
10
  - **NAICS**: 518210, 524292, 541512
11
- - **Set-Aside**: Full and open competition
12
- - **Period of Performance**: {{period_of_performance}}
11
+ - **Set-Aside**: None — full and open
12
+ - **Period of Performance**: Jan 2023 – Dec 2026 (recompete expected post-2026)
13
13
 
14
14
  ## Competitive Landscape
15
- - **Incumbent(s)**: {{incumbents}}
15
+ - **Incumbent(s)**: FedPoint Systems LLC (wholly owned by John Hancock Life & Health Insurance)
16
16
 
17
17
  ## Mission Context
18
18
  <!-- Populate from OSINT research outputs -->
@@ -2,18 +2,29 @@
2
2
 
3
3
  | Attribute | Value |
4
4
  |-----------|-------|
5
- | Legal Name | {{legal_name}} |
6
- | Ticker | {{ticker}} |
7
- | HQ | {{hq}} |
8
- | CEO | {{ceo}} |
9
- | UEI | {{uei}} |
10
- | CAGE Code | {{cage_code}} |
11
- | Revenue | {{revenue}} |
12
- | Backlog | {{backlog}} |
13
- | Key Vehicles | {{key_vehicles}} |
5
+ | Legal Name | Maximus Inc. |
6
+ | Ticker | MMS (NYSE) |
7
+ | HQ | Tysons, Virginia |
8
+ | CEO | Bruce Caswell |
9
+ | UEI | RBGHRKKXVQ83 |
10
+ | CAGE Code | 7N773 |
11
+ | Revenue | ~$5.31B (FY2024) |
12
+ | Backlog | ~$16.2B |
13
+ | Key Vehicles | OASIS+, GSA MAS |
14
14
 
15
15
  ## Mission Threads & Accelerators
16
- {{mission_threads}}
16
+ | Asset | Description |
17
+ |-------|-------------|
18
+ | TXM | Total Experience Management — FedRAMP-authorized omnichannel CX platform |
19
+ | ITSM&M | IT Service Management & Modernization thread |
20
+ | Clinical | Clinical services delivery thread |
21
+ | AI/ML Accelerator | Pre-built AI/ML capabilities |
22
+ | CX Accelerator | Citizen experience tooling |
23
+
17
24
 
18
25
  ## Key Partnerships
19
- {{key_partnerships}}
26
+ | Partner | Integration |
27
+ |---------|-------------|
28
+ | AWS | Strategic collaboration; Bedrock, Lex, Textract |
29
+ | Salesforce | Agentforce AI platform integration with TXM |
30
+ | Bingli | AI-powered diagnostic reasoning (clinical) |
@@ -30,27 +30,18 @@ knowledge_packs:
30
30
  vars:
31
31
  agency: "Office of Personnel Management (OPM)"
32
32
  program_name: "BENEFEDS — Federal Employee Benefits Enrollment & Premium Administration"
33
- incumbent: "FedPoint Systems LLC (wholly owned by John Hancock Life & Health Insurance)"
34
- contract_value: "$500M ceiling (2023-2026)"
33
+ key_personnel: "[RESEARCH NEEDED]"
34
+ contract_vehicle: "Full and open competition (conventional procurement)"
35
+ period_of_performance: "Jan 2023 – Dec 2026 (recompete expected post-2026)"
35
36
  naics: "518210, 524292, 541512"
36
- set_aside: "Full and open competition"
37
- deal_type: "recompete"
38
- capture_phase: "Shaping"
39
- key_programs: "FEDVIP (dental/vision), FSAFEDS (flex spending), FLTCIP (long-term care)"
40
- enrollment_scale: "1M+ transactions during annual open season, 1,000+ seasonal staff"
41
-
42
- - template: corporate-reference
43
- output: maximus-corporate.md
44
- targets: [claude-project, perplexity-space]
45
- vars:
46
- company_name: "Maximus Inc."
37
+ set_aside: "None — full and open"
38
+ incumbents: "FedPoint Systems LLC (wholly owned by John Hancock Life & Health Insurance)"
47
39
 
48
40
  overrides:
49
41
  perplexity_space_append:
50
42
  research_domains: |
51
- - OPM BENEFEDS contract history, modifications, and performance (USASpending, FPDS, SAM.gov)
52
- - FedPoint Systems LLC federal performance, ATO certifications, service metrics
53
- - OPM strategic plan, IG/GAO findings on FEHB fraud, congressional oversight hearings
54
- - OPM technology modernization: IT Strategic Plan 2023-2026, customer experience initiatives
55
- - Maximus past performance and existing relationships at OPM (retirement services contract)
56
- - Federal benefits enrollment platform trends: digital transformation, fraud prevention, seasonal surge staffing
43
+ - OPM BENEFEDS contract history and performance (SAM.gov, FPDS)
44
+ - FedPoint federal performance and ATO certifications
45
+ - OPM strategic plan, GAO findings, FEHB fraud oversight
46
+ - Maximus past performance at OPM
47
+ - Benefits enrollment: digital transformation, fraud prevention
@@ -13,12 +13,11 @@ SSEB simulation: score only what's on the page against Section M. Ratings: Outst
13
13
  BLUF every paragraph. FBP every claim. Active voice, SHALL→WILL, 70/30 mission/company. Ban "robust/world-class/seamless/leverage/synergy." Hierarchy: Approach→Framework→Methodology→Process (never conflate).
14
14
 
15
15
  ## Research Domains
16
- - OPM BENEFEDS contract history, modifications, and performance (USASpending, FPDS, SAM.gov)
17
- - FedPoint Systems LLC federal performance, ATO certifications, service metrics
18
- - OPM strategic plan, IG/GAO findings on FEHB fraud, congressional oversight hearings
19
- - OPM technology modernization: IT Strategic Plan 2023-2026, customer experience initiatives
20
- - Maximus past performance and existing relationships at OPM (retirement services contract)
21
- - Federal benefits enrollment platform trends: digital transformation, fraud prevention, seasonal surge staffing
16
+ - OPM BENEFEDS contract history and performance (SAM.gov, FPDS)
17
+ - FedPoint federal performance and ATO certifications
18
+ - OPM strategic plan, GAO findings, FEHB fraud oversight
19
+ - Maximus past performance at OPM
20
+ - Benefits enrollment: digital transformation, fraud prevention
22
21
 
23
22
  ## How to Answer
24
23
  No flattery or filler. Be skeptical, concise.
@@ -9,7 +9,6 @@ capture_phase: Shaping
9
9
  platforms:
10
10
  - claude-project
11
11
  - perplexity-space
12
- - claude-code
13
12
 
14
13
  vars: {}
15
14