@esoteric-logic/praxis-harness 2.13.0 → 2.15.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 (46) hide show
  1. package/base/CLAUDE.md +7 -1
  2. package/base/configs/registry.json +4 -2
  3. package/base/hooks/context7-remind.sh +81 -0
  4. package/base/hooks/settings-hooks.json +9 -0
  5. package/base/rules/coding.md +7 -0
  6. package/base/skills/px-prompt/SKILL.md +373 -0
  7. package/base/skills/px-research/SKILL.md +13 -0
  8. package/bin/praxis.js +7 -0
  9. package/bin/prompt-blocks.js +145 -0
  10. package/bin/prompt-compile.js +313 -0
  11. package/kits/web-designer/rules/web-design.md +13 -2
  12. package/lib/assemblers.js +249 -0
  13. package/lib/loader.js +148 -0
  14. package/package.json +10 -3
  15. package/prompts/blocks/behaviors/flag-confidence.md +13 -0
  16. package/prompts/blocks/behaviors/handle-uncertainty.md +13 -0
  17. package/prompts/blocks/behaviors/no-flattery.md +15 -0
  18. package/prompts/blocks/behaviors/recommend-with-reasons.md +13 -0
  19. package/prompts/blocks/behaviors/verify-before-reporting.md +13 -0
  20. package/prompts/blocks/context/mcp-servers.md +12 -0
  21. package/prompts/blocks/context/official-docs-first.md +16 -0
  22. package/prompts/blocks/context/praxis-workflow.md +20 -0
  23. package/prompts/blocks/context/vault-integration.md +13 -0
  24. package/prompts/blocks/domains/cloud-infrastructure.md +13 -0
  25. package/prompts/blocks/domains/govcon.md +13 -0
  26. package/prompts/blocks/domains/web-development.md +13 -0
  27. package/prompts/blocks/formats/concise-responses.md +13 -0
  28. package/prompts/blocks/formats/what-so-what-now-what.md +16 -0
  29. package/prompts/blocks/identity/research-partner.md +10 -0
  30. package/prompts/blocks/identity/senior-engineer.md +15 -0
  31. package/prompts/blocks/identity/solutions-architect.md +13 -0
  32. package/prompts/profiles/_base.yaml +15 -0
  33. package/prompts/profiles/federal-cloud.yaml +18 -0
  34. package/prompts/profiles/praxis.yaml +13 -0
  35. package/prompts/projects/_template/prompt-config.yaml +34 -0
  36. package/prompts/projects/maximus/prompt-config.yaml +13 -0
  37. package/prompts/projects/maximus/references/maturity-questions.md +634 -0
  38. package/prompts/projects/maximus/references/phase-maturity-matrix.md +188 -0
  39. package/prompts/projects/maximus/references/proposal-writing-standards.md +367 -0
  40. package/prompts/projects/maximus/space-instructions.md +67 -0
  41. package/prompts/projects/maximus/system-prompt.md +641 -0
  42. package/prompts/projects/praxis/CLAUDE.md +84 -0
  43. package/prompts/projects/praxis/project-instructions.md +24 -0
  44. package/prompts/projects/praxis/prompt-config.yaml +40 -0
  45. package/prompts/projects/praxis/space-instructions.md +28 -0
  46. package/scripts/lint-harness.sh +42 -0
@@ -0,0 +1,13 @@
1
+ ---
2
+ id: solutions-architect
3
+ description: "Architecture-focused identity for cloud, system design, and enterprise integration"
4
+ category: identity
5
+ platforms: [claude-code, claude-project, perplexity-space]
6
+ char_estimate: 250
7
+ tags: [identity, architecture]
8
+ ---
9
+
10
+ You are a solutions architect with deep expertise in cloud infrastructure, system design, and enterprise integration. You reason about trade-offs across cost, performance, security, and operational complexity. You design for production — not for demos.
11
+
12
+ <!-- CONDENSED -->
13
+ You are a solutions architect specializing in cloud infrastructure, system design, and enterprise integration. You design for production and reason about trade-offs across cost, performance, security, and operations.
@@ -0,0 +1,15 @@
1
+ name: _base
2
+ description: Shared foundation — core behaviors and formats inherited by all profiles
3
+
4
+ blocks:
5
+ identity: []
6
+ domains: []
7
+ behaviors:
8
+ - no-flattery
9
+ - verify-before-reporting
10
+ - recommend-with-reasons
11
+ - handle-uncertainty
12
+ formats:
13
+ - what-so-what-now-what
14
+ - concise-responses
15
+ context: []
@@ -0,0 +1,18 @@
1
+ name: federal-cloud
2
+ description: Federal cloud engineering — Azure/AWS + compliance + security
3
+ extends: _base
4
+
5
+ blocks:
6
+ identity:
7
+ - solutions-architect
8
+ domains:
9
+ - cloud-infrastructure
10
+ - govcon
11
+ context:
12
+ - vault-integration
13
+ - mcp-servers
14
+ - praxis-workflow
15
+ - official-docs-first
16
+
17
+ perplexity_space:
18
+ extra_sources: []
@@ -0,0 +1,13 @@
1
+ name: praxis
2
+ description: Praxis harness development — Claude Code tooling and workflow automation
3
+ extends: _base
4
+
5
+ blocks:
6
+ identity:
7
+ - senior-engineer
8
+ domains:
9
+ - web-development
10
+ context:
11
+ - vault-integration
12
+ - mcp-servers
13
+ - praxis-workflow
@@ -0,0 +1,34 @@
1
+ project: {{project_name}}
2
+ description: {{project_description}}
3
+ mode: compiled
4
+ version: "1.0"
5
+
6
+ # Target platforms
7
+ platforms:
8
+ - claude-project
9
+ - perplexity-space
10
+ # - claude-code
11
+
12
+ # Block composition (alternative to referencing a global profile)
13
+ # Set profile to a named profile OR leave null and declare blocks directly
14
+ profile: null
15
+ blocks:
16
+ identity: []
17
+ domains: []
18
+ behaviors: []
19
+ formats: []
20
+ context: []
21
+
22
+ # Research domains for Perplexity Spaces
23
+ research_domains: []
24
+
25
+ # Knowledge files to upload alongside the system prompt
26
+ knowledge_files: []
27
+
28
+ # Claude Code extras (only needed if claude-code is in platforms)
29
+ claude_code:
30
+ tech_stack: ""
31
+ commands: ""
32
+ git_identity: ""
33
+ git_email: ""
34
+ extra_notes: ""
@@ -0,0 +1,13 @@
1
+ project: maximus
2
+ description: Maximus Federal Deal Solution Architect — multi-role workspace for capture, proposal, and technical architecture
3
+ mode: standalone
4
+ profile: null
5
+ version: "9.1"
6
+
7
+ knowledge_files:
8
+ - file: references/maturity-questions.md
9
+ description: 1,000+ assessment questions across all 11 framework sections
10
+ - file: references/phase-maturity-matrix.md
11
+ description: Per-section, per-phase GREEN/YELLOW/RED scoring criteria and gate definitions
12
+ - file: references/proposal-writing-standards.md
13
+ description: BLUF, FBP, grammar rules, banned phrases, document-type rules, SA checklist