davia 0.1.10-alpha.1 → 0.1.11

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.
@@ -0,0 +1,3 @@
1
+ import type { AgentConfig } from "../../types.js";
2
+ export declare const augmentConfig: AgentConfig;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -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"}
@@ -0,0 +1,9 @@
1
+ export const augmentConfig = {
2
+ name: "Augment",
3
+ folderPath: ".augment/rules",
4
+ fileName: "davia-documentation.md",
5
+ frontmatter: `---
6
+ type: always_apply
7
+ ---
8
+ `,
9
+ };
@@ -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;AAO/C,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,CAMxD,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"}
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;AAQ/C,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,CAOxD,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,14 @@ 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";
6
7
  export const SUPPORTED_AGENTS = {
7
8
  cursor: cursorConfig,
8
9
  windsurf: windsurfConfig,
9
10
  "github-copilot": githubCopilotConfig,
10
11
  "claude-code": claudeCodeConfig,
11
12
  "open-code": openCodeConfig,
13
+ "augment": augmentConfig,
12
14
  };
13
15
  export function isValidAgent(agentType) {
14
16
  return agentType in SUPPORTED_AGENTS;
@@ -22,3 +24,4 @@ export { windsurfConfig } from "./windsurf/index.js";
22
24
  export { githubCopilotConfig } from "./github-copilot/index.js";
23
25
  export { claudeCodeConfig } from "./claude-code/index.js";
24
26
  export { openCodeConfig } from "./open-code/index.js";
27
+ export { augmentConfig } from "./augment/index.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "davia",
3
- "version": "0.1.10-alpha.1",
3
+ "version": "0.1.11",
4
4
  "license": "MIT",
5
5
  "description": "Interactive, editable docs designed for coding agents",
6
6
  "homepage": "https://davia.ai",
@@ -44,8 +44,8 @@
44
44
  "open": "^10.2.0",
45
45
  "ora": "^9.0.0",
46
46
  "slug": "^11.0.1",
47
- "@davia/agent": "^0.1.3",
48
- "@davia/web": "^0.1.9"
47
+ "@davia/web": "^0.1.11",
48
+ "@davia/agent": "^0.1.3"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@types/archiver": "^7.0.0",