@esoteric-logic/praxis-harness 3.3.0 → 3.3.1
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/base/skills/px-prompt/SKILL.md +2 -2
- package/bin/prompt-compile.js +1 -2
- package/package.json +1 -1
- package/prompts/work/maximus/projects/benefeds/knowledge/deal-context.md +5 -5
- package/prompts/work/maximus/projects/benefeds/knowledge/maximus-corporate.md +22 -11
- package/prompts/work/maximus/projects/benefeds/prompt-config.yaml +10 -19
- package/prompts/work/maximus/projects/benefeds/space-instructions-perplexity.md +5 -6
- package/prompts/work/maximus/projects/dha-tricare/prompt-config.yaml +0 -1
|
@@ -42,7 +42,7 @@ Platform outputs use suffixed filenames so users can distinguish them at a glanc
|
|
|
42
42
|
| Platform | Output Filename | Budget | When |
|
|
43
43
|
|----------|----------------|--------|------|
|
|
44
44
|
| Claude Projects | `system-prompt.md` | 5,000 chars | Standalone projects |
|
|
45
|
-
| Claude Projects | `project-instructions-claude-desktop.md` |
|
|
45
|
+
| Claude Projects | `project-instructions-claude-desktop.md` | 5,000 chars | Compiled projects (compiler output) |
|
|
46
46
|
| Perplexity Spaces | `space-instructions-perplexity.md` | 4,000 chars | All projects |
|
|
47
47
|
|
|
48
48
|
Each project has exactly **2 output files** — one for Claude Projects, one for Perplexity Spaces.
|
|
@@ -510,7 +510,7 @@ Check each file against these criteria:
|
|
|
510
510
|
|
|
511
511
|
**Budget checks:**
|
|
512
512
|
- `system-prompt.md` under 5,000 chars? (standalone)
|
|
513
|
-
- `project-instructions-claude-desktop.md` under
|
|
513
|
+
- `project-instructions-claude-desktop.md` under 5,000 chars? (compiled)
|
|
514
514
|
- `space-instructions-perplexity.md` under 4,000 chars?
|
|
515
515
|
|
|
516
516
|
**Currency checks (via Perplexity):**
|
package/bin/prompt-compile.js
CHANGED
|
@@ -57,7 +57,7 @@ function discoverAllProjects() {
|
|
|
57
57
|
|
|
58
58
|
const CHAR_BUDGETS = {
|
|
59
59
|
'claude-code': Infinity,
|
|
60
|
-
'claude-project':
|
|
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 = [];
|
package/package.json
CHANGED
|
@@ -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**:
|
|
6
|
+
- **Key Personnel**: [RESEARCH NEEDED]
|
|
7
7
|
|
|
8
8
|
## Opportunity
|
|
9
|
-
- **Contract Vehicle**:
|
|
9
|
+
- **Contract Vehicle**: Full and open competition (conventional procurement)
|
|
10
10
|
- **NAICS**: 518210, 524292, 541512
|
|
11
|
-
- **Set-Aside**:
|
|
12
|
-
- **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)**:
|
|
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 |
|
|
6
|
-
| Ticker |
|
|
7
|
-
| HQ |
|
|
8
|
-
| CEO |
|
|
9
|
-
| UEI |
|
|
10
|
-
| CAGE Code |
|
|
11
|
-
| Revenue |
|
|
12
|
-
| Backlog |
|
|
13
|
-
| 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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
34
|
-
|
|
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: "
|
|
37
|
-
|
|
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
|
|
52
|
-
- FedPoint
|
|
53
|
-
- OPM strategic plan,
|
|
54
|
-
-
|
|
55
|
-
-
|
|
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
|
|
17
|
-
- FedPoint
|
|
18
|
-
- OPM strategic plan,
|
|
19
|
-
-
|
|
20
|
-
-
|
|
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.
|