create-mdsn 0.1.0 → 0.2.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.
- package/README.md +10 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
`create-mdsn` scaffolds a new MDSN site project.
|
|
4
4
|
|
|
5
|
-
Use it when you want the shortest path to a runnable MDSN app.
|
|
5
|
+
Use it when you want the shortest path to a runnable MDSN skills app or agent app.
|
|
6
6
|
|
|
7
7
|
## What It Creates
|
|
8
8
|
|
|
@@ -37,7 +37,16 @@ MDSN is a Markdown-native interaction model for:
|
|
|
37
37
|
- interactive documents
|
|
38
38
|
- shared human-agent workflows
|
|
39
39
|
|
|
40
|
+
In MDSN, page content is not just presentation. It is also shared prompt context for AI agents.
|
|
41
|
+
|
|
42
|
+
That is what lets the same page source work as:
|
|
43
|
+
|
|
44
|
+
- content for humans
|
|
45
|
+
- interaction structure for hosts
|
|
46
|
+
- prompt context for agents
|
|
47
|
+
|
|
40
48
|
## Docs
|
|
41
49
|
|
|
42
50
|
- [Getting Started](https://docs.mdsn.ai/docs/getting-started)
|
|
43
51
|
- [Framework Development](https://docs.mdsn.ai/docs/site-development)
|
|
52
|
+
- [HTTP Content Negotiation and Shared Interaction](https://docs.mdsn.ai/docs/shared-interaction)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-mdsn",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "npm create entry for scaffolding a new MDSN site project.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,7 +19,10 @@
|
|
|
19
19
|
"markdown",
|
|
20
20
|
"ai",
|
|
21
21
|
"agent",
|
|
22
|
+
"agentic",
|
|
22
23
|
"workflow",
|
|
24
|
+
"skills-app",
|
|
25
|
+
"agent-app",
|
|
23
26
|
"cli"
|
|
24
27
|
],
|
|
25
28
|
"bin": {
|
|
@@ -31,6 +34,6 @@
|
|
|
31
34
|
"LICENSE"
|
|
32
35
|
],
|
|
33
36
|
"dependencies": {
|
|
34
|
-
"@mdsnai/sdk": "0.
|
|
37
|
+
"@mdsnai/sdk": "0.2.0"
|
|
35
38
|
}
|
|
36
39
|
}
|