@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.
- package/dist/cli/code-agent-executor.js +2 -2
- package/dist/cli/code-agent-executor.js.map +1 -1
- package/dist/cli/index.js +2 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/skills.d.ts +9 -3
- package/dist/cli/skills.d.ts.map +1 -1
- package/dist/cli/skills.js +393 -45
- package/dist/cli/skills.js.map +1 -1
- package/dist/client/AgentPanel.d.ts.map +1 -1
- package/dist/client/AgentPanel.js +5 -6
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/file-upload/pre-upload-attachments.js +1 -1
- package/dist/file-upload/pre-upload-attachments.js.map +1 -1
- package/dist/scripts/runner.d.ts +1 -1
- package/dist/scripts/runner.d.ts.map +1 -1
- package/dist/scripts/runner.js +40 -6
- package/dist/scripts/runner.js.map +1 -1
- package/dist/server/auth.d.ts +1 -0
- package/dist/server/auth.d.ts.map +1 -1
- package/dist/server/auth.js +14 -0
- package/dist/server/auth.js.map +1 -1
- package/dist/server/better-auth-instance.d.ts +7 -0
- package/dist/server/better-auth-instance.d.ts.map +1 -1
- package/dist/server/better-auth-instance.js +38 -9
- package/dist/server/better-auth-instance.js.map +1 -1
- package/dist/server/google-oauth.d.ts +5 -0
- package/dist/server/google-oauth.d.ts.map +1 -1
- package/dist/server/google-oauth.js +18 -1
- package/dist/server/google-oauth.js.map +1 -1
- package/dist/templates/headless/AGENTS.md +1 -1
- package/dist/templates/headless/DEVELOPING.md +1 -1
- package/dist/tracking/providers.d.ts.map +1 -1
- package/dist/tracking/providers.js +14 -19
- package/dist/tracking/providers.js.map +1 -1
- package/docs/content/actions.md +11 -2
- package/docs/content/local-file-mode.md +25 -0
- package/docs/content/skills-guide.md +3 -0
- package/docs/content/template-clips.md +48 -1
- package/docs/content/template-content.md +15 -0
- package/package.json +1 -1
- package/src/templates/headless/AGENTS.md +1 -1
- 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