markform 0.1.9 → 0.1.10
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/README.md +2 -1
- package/dist/ai-sdk.mjs +1 -1
- package/dist/{apply-B2kt6C2z.mjs → apply-BTFCHpYV.mjs} +369 -330
- package/dist/bin.mjs +1 -1
- package/dist/{cli-Dt_PlYi_.mjs → cli-BZa4fYR9.mjs} +25 -13
- package/dist/cli.mjs +1 -1
- package/dist/index.d.mts +165 -9
- package/dist/index.mjs +3 -3
- package/dist/{src-DFsC5wwy.mjs → src-CYnyLwBe.mjs} +98 -92
- package/docs/markform-spec.md +101 -50
- package/examples/movie-research/movie-deep-research-mock-filled.form.md +601 -0
- package/examples/startup-deep-research/startup-deep-research.form.md +21 -36
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# Markform
|
|
2
2
|
|
|
3
3
|
[](https://github.com/jlevy/markform/actions/workflows/ci.yml)
|
|
4
|
-

|
|
4
|
+
 [](https://x.com/ojoshe)
|
|
5
6
|
|
|
6
7
|
**Markform** is a text format for defining structured forms that humans can read,
|
|
7
8
|
machines can parse, and agents can fill via tool calls.
|
package/dist/ai-sdk.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
import { L as PatchSchema } from "./coreTypes-B1oI7qvV.mjs";
|
|
3
|
-
import { d as serialize, i as inspect, t as applyPatches } from "./apply-
|
|
3
|
+
import { d as serialize, i as inspect, t as applyPatches } from "./apply-BTFCHpYV.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
|
|
6
6
|
//#region src/integrations/vercelAiSdkTools.ts
|