markform 0.1.16 → 0.1.18

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 (35) hide show
  1. package/LICENSE +369 -0
  2. package/README.md +154 -214
  3. package/dist/ai-sdk.d.mts +1 -1
  4. package/dist/ai-sdk.mjs +2 -2
  5. package/dist/{apply-CXsI5N9x.mjs → apply-BYgtU64w.mjs} +203 -16
  6. package/dist/apply-BYgtU64w.mjs.map +1 -0
  7. package/dist/bin.mjs +1 -1
  8. package/dist/{cli-BsFessUW.mjs → cli-D9w0Bp4J.mjs} +199 -13
  9. package/dist/cli-D9w0Bp4J.mjs.map +1 -0
  10. package/dist/cli.mjs +1 -1
  11. package/dist/{coreTypes-DE6Giau5.d.mts → coreTypes-BMEs8h_2.d.mts} +165 -2
  12. package/dist/{coreTypes-DiCddBKu.mjs → coreTypes-SDB3KRRJ.mjs} +9 -4
  13. package/dist/coreTypes-SDB3KRRJ.mjs.map +1 -0
  14. package/dist/index.d.mts +266 -2
  15. package/dist/index.mjs +5 -5
  16. package/dist/{session-B7aR6hno.mjs → session-CW9AQw6i.mjs} +1 -1
  17. package/dist/{session-XDrocA3j.mjs → session-Ci4B0Pna.mjs} +2 -2
  18. package/dist/{session-XDrocA3j.mjs.map → session-Ci4B0Pna.mjs.map} +1 -1
  19. package/dist/{src-Dv3IZSQU.mjs → src-DDxi-2ne.mjs} +966 -32
  20. package/dist/src-DDxi-2ne.mjs.map +1 -0
  21. package/docs/markform-apis.md +110 -0
  22. package/docs/markform-reference.md +58 -0
  23. package/docs/markform-spec.md +204 -9
  24. package/examples/movie-research/movie-deep-research-mock-filled.form.md +1 -1
  25. package/examples/movie-research/movie-deep-research.form.md +1 -1
  26. package/examples/parallel/parallel-research.form.md +57 -0
  27. package/examples/plan-document/plan-document-markdoc.form.md +35 -0
  28. package/examples/plan-document/plan-document-progress.form.md +47 -0
  29. package/examples/plan-document/plan-document.form.md +47 -0
  30. package/examples/startup-deep-research/startup-deep-research.form.md +1 -1
  31. package/package.json +2 -2
  32. package/dist/apply-CXsI5N9x.mjs.map +0 -1
  33. package/dist/cli-BsFessUW.mjs.map +0 -1
  34. package/dist/coreTypes-DiCddBKu.mjs.map +0 -1
  35. package/dist/src-Dv3IZSQU.mjs.map +0 -1
@@ -0,0 +1,47 @@
1
+ ---
2
+ markform:
3
+ spec: MF/0.1
4
+ title: Project Plan
5
+ description: "Example plan document using implicit checkboxes - no explicit field wrappers needed."
6
+ roles:
7
+ - user
8
+ - agent
9
+ role_instructions:
10
+ user: "Review the plan and update task status as work progresses."
11
+ agent: "Track task completion and update checkbox states."
12
+ ---
13
+ <!-- form id="project_plan" title="Project Plan" -->
14
+
15
+ <!-- description ref="project_plan" -->
16
+ A project plan demonstrating Markform's implicit checkboxes feature.
17
+ When a form has no explicit field tags, checkboxes are automatically
18
+ collected into an implicit `checkboxes` field.
19
+ <!-- /description -->
20
+
21
+ ## Phase 1: Research
22
+
23
+ - [ ] Review existing documentation <!-- #review_docs -->
24
+ - [ ] Analyze competitor solutions <!-- #competitor_analysis -->
25
+ - [ ] Interview stakeholders <!-- #stakeholder_interviews -->
26
+
27
+ ## Phase 2: Design
28
+
29
+ - [ ] Create architecture document <!-- #arch_doc -->
30
+ - [ ] Design API specification <!-- #api_spec -->
31
+ - [ ] Review design with team <!-- #design_review -->
32
+
33
+ ## Phase 3: Implementation
34
+
35
+ - [ ] Set up development environment <!-- #dev_setup -->
36
+ - [ ] Implement core functionality <!-- #core_impl -->
37
+ - [ ] Add unit tests <!-- #unit_tests -->
38
+ - [ ] Add integration tests <!-- #integration_tests -->
39
+
40
+ ## Phase 4: Release
41
+
42
+ - [ ] Write user documentation <!-- #user_docs -->
43
+ - [ ] Perform security audit <!-- #security_audit -->
44
+ - [ ] Deploy to staging <!-- #staging_deploy -->
45
+ - [ ] Deploy to production <!-- #prod_deploy -->
46
+
47
+ <!-- /form -->
@@ -21,7 +21,7 @@ markform:
21
21
  7. Include source URLs for every piece of information
22
22
  8. Leave unknown fields empty - don't guess or fabricate
23
23
  9. Keep descriptions concise (50-150 words max)
24
- harness_config:
24
+ harness:
25
25
  max_issues_per_turn: 5
26
26
  max_patches_per_turn: 10
27
27
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "markform",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "description": "Markdown forms for token-friendly workflows",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "author": "Joshua Levy",
@@ -80,7 +80,7 @@
80
80
  "c8": "^10.1.3",
81
81
  "monocart-coverage-reports": "^2.12.9",
82
82
  "publint": "^0.3.16",
83
- "tryscript": "^0.1.4",
83
+ "tryscript": "^0.1.6",
84
84
  "tsdown": "^0.18.3",
85
85
  "typescript": "^5.9.3",
86
86
  "vitest": "^4.0.16"