davia 0.1.10 → 0.1.12
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/coding-agents-options/agents/antigravity/index.d.ts +3 -0
- package/dist/coding-agents-options/agents/antigravity/index.d.ts.map +1 -0
- package/dist/coding-agents-options/agents/antigravity/index.js +10 -0
- package/dist/coding-agents-options/agents/augment/index.d.ts +3 -0
- package/dist/coding-agents-options/agents/augment/index.d.ts.map +1 -0
- package/dist/coding-agents-options/agents/augment/index.js +9 -0
- package/dist/coding-agents-options/agents/index.d.ts +1 -0
- package/dist/coding-agents-options/agents/index.d.ts.map +1 -1
- package/dist/coding-agents-options/agents/index.js +5 -0
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/coding-agents-options/agents/antigravity/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAElD,eAAO,MAAM,iBAAiB,EAAE,WAS/B,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export const antigravityConfig = {
|
|
2
|
+
name: "Antigravity",
|
|
3
|
+
folderPath: ".agent/workflows",
|
|
4
|
+
fileName: "davia-documentation.md",
|
|
5
|
+
frontmatter: `---
|
|
6
|
+
description: Use whenever the user asks you to create, update, or read documentation/Wiki (docs, specs, design notes, API docs, etc.)
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
`,
|
|
10
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/coding-agents-options/agents/augment/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAElD,eAAO,MAAM,aAAa,EAAE,WAQ3B,CAAC"}
|
|
@@ -7,4 +7,5 @@ export { windsurfConfig } from "./windsurf/index.js";
|
|
|
7
7
|
export { githubCopilotConfig } from "./github-copilot/index.js";
|
|
8
8
|
export { claudeCodeConfig } from "./claude-code/index.js";
|
|
9
9
|
export { openCodeConfig } from "./open-code/index.js";
|
|
10
|
+
export { augmentConfig } from "./augment/index.js";
|
|
10
11
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/coding-agents-options/agents/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/coding-agents-options/agents/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAS/C,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,CAQxD,CAAC;AAEF,wBAAgB,YAAY,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAEvD;AAED,wBAAgB,sBAAsB,IAAI,MAAM,CAE/C;AAGD,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC"}
|
|
@@ -3,12 +3,16 @@ import { windsurfConfig } from "./windsurf/index.js";
|
|
|
3
3
|
import { githubCopilotConfig } from "./github-copilot/index.js";
|
|
4
4
|
import { claudeCodeConfig } from "./claude-code/index.js";
|
|
5
5
|
import { openCodeConfig } from "./open-code/index.js";
|
|
6
|
+
import { augmentConfig } from "./augment/index.js";
|
|
7
|
+
import { antigravityConfig } from "./antigravity/index.js";
|
|
6
8
|
export const SUPPORTED_AGENTS = {
|
|
7
9
|
cursor: cursorConfig,
|
|
8
10
|
windsurf: windsurfConfig,
|
|
11
|
+
antigravity: antigravityConfig,
|
|
9
12
|
"github-copilot": githubCopilotConfig,
|
|
10
13
|
"claude-code": claudeCodeConfig,
|
|
11
14
|
"open-code": openCodeConfig,
|
|
15
|
+
"augment": augmentConfig,
|
|
12
16
|
};
|
|
13
17
|
export function isValidAgent(agentType) {
|
|
14
18
|
return agentType in SUPPORTED_AGENTS;
|
|
@@ -22,3 +26,4 @@ export { windsurfConfig } from "./windsurf/index.js";
|
|
|
22
26
|
export { githubCopilotConfig } from "./github-copilot/index.js";
|
|
23
27
|
export { claudeCodeConfig } from "./claude-code/index.js";
|
|
24
28
|
export { openCodeConfig } from "./open-code/index.js";
|
|
29
|
+
export { augmentConfig } from "./augment/index.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "davia",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Interactive, editable docs designed for coding agents",
|
|
6
6
|
"homepage": "https://davia.ai",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"ora": "^9.0.0",
|
|
46
46
|
"slug": "^11.0.1",
|
|
47
47
|
"@davia/agent": "^0.1.3",
|
|
48
|
-
"@davia/web": "^0.1.
|
|
48
|
+
"@davia/web": "^0.1.11"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/archiver": "^7.0.0",
|