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.
- package/LICENSE +369 -0
- package/README.md +154 -214
- package/dist/ai-sdk.d.mts +1 -1
- package/dist/ai-sdk.mjs +2 -2
- package/dist/{apply-CXsI5N9x.mjs → apply-BYgtU64w.mjs} +203 -16
- package/dist/apply-BYgtU64w.mjs.map +1 -0
- package/dist/bin.mjs +1 -1
- package/dist/{cli-BsFessUW.mjs → cli-D9w0Bp4J.mjs} +199 -13
- package/dist/cli-D9w0Bp4J.mjs.map +1 -0
- package/dist/cli.mjs +1 -1
- package/dist/{coreTypes-DE6Giau5.d.mts → coreTypes-BMEs8h_2.d.mts} +165 -2
- package/dist/{coreTypes-DiCddBKu.mjs → coreTypes-SDB3KRRJ.mjs} +9 -4
- package/dist/coreTypes-SDB3KRRJ.mjs.map +1 -0
- package/dist/index.d.mts +266 -2
- package/dist/index.mjs +5 -5
- package/dist/{session-B7aR6hno.mjs → session-CW9AQw6i.mjs} +1 -1
- package/dist/{session-XDrocA3j.mjs → session-Ci4B0Pna.mjs} +2 -2
- package/dist/{session-XDrocA3j.mjs.map → session-Ci4B0Pna.mjs.map} +1 -1
- package/dist/{src-Dv3IZSQU.mjs → src-DDxi-2ne.mjs} +966 -32
- package/dist/src-DDxi-2ne.mjs.map +1 -0
- package/docs/markform-apis.md +110 -0
- package/docs/markform-reference.md +58 -0
- package/docs/markform-spec.md +204 -9
- package/examples/movie-research/movie-deep-research-mock-filled.form.md +1 -1
- package/examples/movie-research/movie-deep-research.form.md +1 -1
- package/examples/parallel/parallel-research.form.md +57 -0
- package/examples/plan-document/plan-document-markdoc.form.md +35 -0
- package/examples/plan-document/plan-document-progress.form.md +47 -0
- package/examples/plan-document/plan-document.form.md +47 -0
- package/examples/startup-deep-research/startup-deep-research.form.md +1 -1
- package/package.json +2 -2
- package/dist/apply-CXsI5N9x.mjs.map +0 -1
- package/dist/cli-BsFessUW.mjs.map +0 -1
- package/dist/coreTypes-DiCddBKu.mjs.map +0 -1
- 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
|
-
|
|
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.
|
|
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.
|
|
83
|
+
"tryscript": "^0.1.6",
|
|
84
84
|
"tsdown": "^0.18.3",
|
|
85
85
|
"typescript": "^5.9.3",
|
|
86
86
|
"vitest": "^4.0.16"
|