@brainfish-ai/devdoc 0.1.39 → 0.1.41
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 -2
- package/ai-agents/.claude/skills/bootstrap-docs/SKILL.md +475 -334
- package/ai-agents/.claude/skills/commit-doc/SKILL.md +1 -1
- package/ai-agents/.claude/skills/create-doc/SKILL.md +1 -1
- package/ai-agents/.claude/skills/update-doc/SKILL.md +1 -1
- package/ai-agents/.cursor/rules/devdoc-bootstrap.mdc +222 -198
- package/ai-agents/.cursor/rules/devdoc-commit.mdc +1 -1
- package/ai-agents/.devdoc/templates/explanation.md +292 -0
- package/ai-agents/.devdoc/templates/guide.md +35 -108
- package/ai-agents/.devdoc/templates/how-to.md +166 -0
- package/ai-agents/.devdoc/templates/quickstart.md +104 -125
- package/ai-agents/.devdoc/templates/reference.md +264 -0
- package/ai-agents/.devdoc/templates/tutorial.md +40 -72
- package/ai-agents/schemas/context.schema.json +109 -10
- package/dist/cli/commands/create.js +13 -15
- package/dist/cli/commands/whoami.js +16 -4
- package/package.json +1 -1
- package/ai-agents/schemas/code-graph.schema.json +0 -413
package/README.md
CHANGED
|
@@ -372,7 +372,7 @@ function hello() {
|
|
|
372
372
|
Deploy to Brainfish with a single command:
|
|
373
373
|
|
|
374
374
|
```bash
|
|
375
|
-
|
|
375
|
+
npm run deploy
|
|
376
376
|
```
|
|
377
377
|
|
|
378
378
|
Your docs will be live at `https://your-project.devdoc.sh`
|
|
@@ -381,7 +381,7 @@ Your docs will be live at `https://your-project.devdoc.sh`
|
|
|
381
381
|
|
|
382
382
|
```bash
|
|
383
383
|
# Build for production
|
|
384
|
-
|
|
384
|
+
npm run build
|
|
385
385
|
|
|
386
386
|
# The output is in the dist/ directory
|
|
387
387
|
# Deploy this to any static hosting (Vercel, Netlify, etc.)
|