@agent-native/core 0.66.7 → 0.66.9

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 (42) hide show
  1. package/dist/cli/code-agent-executor.js +2 -2
  2. package/dist/cli/code-agent-executor.js.map +1 -1
  3. package/dist/cli/index.js +2 -2
  4. package/dist/cli/index.js.map +1 -1
  5. package/dist/cli/skills.d.ts +9 -3
  6. package/dist/cli/skills.d.ts.map +1 -1
  7. package/dist/cli/skills.js +393 -45
  8. package/dist/cli/skills.js.map +1 -1
  9. package/dist/client/AgentPanel.d.ts.map +1 -1
  10. package/dist/client/AgentPanel.js +5 -6
  11. package/dist/client/AgentPanel.js.map +1 -1
  12. package/dist/file-upload/pre-upload-attachments.js +1 -1
  13. package/dist/file-upload/pre-upload-attachments.js.map +1 -1
  14. package/dist/scripts/runner.d.ts +1 -1
  15. package/dist/scripts/runner.d.ts.map +1 -1
  16. package/dist/scripts/runner.js +40 -6
  17. package/dist/scripts/runner.js.map +1 -1
  18. package/dist/server/auth.d.ts +1 -0
  19. package/dist/server/auth.d.ts.map +1 -1
  20. package/dist/server/auth.js +14 -0
  21. package/dist/server/auth.js.map +1 -1
  22. package/dist/server/better-auth-instance.d.ts +7 -0
  23. package/dist/server/better-auth-instance.d.ts.map +1 -1
  24. package/dist/server/better-auth-instance.js +38 -9
  25. package/dist/server/better-auth-instance.js.map +1 -1
  26. package/dist/server/google-oauth.d.ts +5 -0
  27. package/dist/server/google-oauth.d.ts.map +1 -1
  28. package/dist/server/google-oauth.js +18 -1
  29. package/dist/server/google-oauth.js.map +1 -1
  30. package/dist/templates/headless/AGENTS.md +1 -1
  31. package/dist/templates/headless/DEVELOPING.md +1 -1
  32. package/dist/tracking/providers.d.ts.map +1 -1
  33. package/dist/tracking/providers.js +14 -19
  34. package/dist/tracking/providers.js.map +1 -1
  35. package/docs/content/actions.md +11 -2
  36. package/docs/content/local-file-mode.md +25 -0
  37. package/docs/content/skills-guide.md +3 -0
  38. package/docs/content/template-clips.md +48 -1
  39. package/docs/content/template-content.md +15 -0
  40. package/package.json +1 -1
  41. package/src/templates/headless/AGENTS.md +1 -1
  42. package/src/templates/headless/DEVELOPING.md +1 -1
@@ -90,6 +90,21 @@ SQL-backed sharing. See [Local File Mode](/docs/local-file-mode) for the
90
90
  standalone repo layout, configuration, custom MDX components, local
91
91
  `extensions/` widgets, and production safety guide.
92
92
 
93
+ To install the Content local-files skill into an existing repo:
94
+
95
+ ```bash
96
+ npx @agent-native/core@latest skills add content --mode local-files --scope project
97
+ ```
98
+
99
+ The installer copies the `content` skill for your coding agent and writes or
100
+ updates `agent-native.json` with Content roots for `docs/`, `blog/`, `content/`,
101
+ and `resources/`. When a local Content app, Agent Native Desktop, or trusted
102
+ local bridge is running, agents should use Content actions such as
103
+ `list-documents`, `get-document`, `edit-document`, `update-document`, and
104
+ `share-local-file-document` instead of raw filesystem writes. Without that local
105
+ bridge, the installed skill still gives the agent the repo-editing contract for
106
+ safe Markdown/MDX edits.
107
+
93
108
  ## For developers
94
109
 
95
110
  The rest of this doc is for anyone forking the Content template or extending it.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-native/core",
3
- "version": "0.66.7",
3
+ "version": "0.66.9",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=22"
@@ -45,7 +45,7 @@ features. Prefer this app's own `AGENTS.md` for app-specific rules.
45
45
  Run actions from this app root:
46
46
 
47
47
  ```bash
48
- pnpm action hello --name Builder
48
+ pnpm action hello '{"name":"Builder"}'
49
49
  ```
50
50
 
51
51
  Run the app-agent loop against those actions:
@@ -4,7 +4,7 @@ Install dependencies, then run the hello action:
4
4
 
5
5
  ```bash
6
6
  pnpm install
7
- pnpm action hello --name Builder
7
+ pnpm action hello '{"name":"Builder"}'
8
8
  ```
9
9
 
10
10
  `actions/run.ts` is only the shared CLI dispatcher that powers