@tryaura/aura-cli 0.1.0
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/LICENSE +202 -0
- package/README.md +11 -0
- package/content/mcp/atlassian-rovo.json +14 -0
- package/content/mcp/github.json +23 -0
- package/content/mcp/sentry.json +23 -0
- package/content/snippets/ask-before-destructive.md +8 -0
- package/content/snippets/commit-conventions.md +8 -0
- package/content/snippets/confluence-references.md +8 -0
- package/content/snippets/jira-linking.md +8 -0
- package/content/snippets/pr-descriptions.md +8 -0
- package/content/snippets/python-style.md +8 -0
- package/content/snippets/typescript-style.md +8 -0
- package/dist/bin/aura.d.ts +1 -0
- package/dist/bin/aura.js +17 -0
- package/dist/index.d.ts +152 -0
- package/dist/index.js +140 -0
- package/dist/plugins/index.d.ts +14 -0
- package/dist/plugins/index.js +2 -0
- package/dist/plugins-n3DS8XXi.js +5684 -0
- package/dist/run-pMPxJqFQ.js +13367 -0
- package/dist/skill-deployment-plan-C4GTrVSy.js +1996 -0
- package/dist/types-DmBu6g0d.d.ts +84 -0
- package/package.json +73 -0
- package/schema/check-output-v1.schema.json +261 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { i as CliRegistryOptions } from "../types-DmBu6g0d.js";
|
|
2
|
+
import { AuraPlugin } from "@tryaura/aura-sdk";
|
|
3
|
+
//#region src/plugins.d.ts
|
|
4
|
+
declare const checksCorePlugin: AuraPlugin;
|
|
5
|
+
declare const claudeCodePlugin: AuraPlugin;
|
|
6
|
+
declare const codexPlugin: AuraPlugin;
|
|
7
|
+
declare const cursorPlugin: AuraPlugin;
|
|
8
|
+
declare const officialContentPlugin: AuraPlugin;
|
|
9
|
+
/** Official plugins composed by the Aura executable and available to branded distributions. */
|
|
10
|
+
declare const OFFICIAL_PLUGINS: readonly AuraPlugin[];
|
|
11
|
+
/** Registry privileges required by the official checks package's stable bare check ids. */
|
|
12
|
+
declare const OFFICIAL_REGISTRY_OPTIONS: CliRegistryOptions;
|
|
13
|
+
//#endregion
|
|
14
|
+
export { OFFICIAL_PLUGINS, OFFICIAL_REGISTRY_OPTIONS, checksCorePlugin, claudeCodePlugin, codexPlugin, cursorPlugin, officialContentPlugin };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { a as codexPlugin, i as claudeCodePlugin, n as OFFICIAL_REGISTRY_OPTIONS, o as cursorPlugin, r as checksCorePlugin, s as officialContentPlugin, t as OFFICIAL_PLUGINS } from "../plugins-n3DS8XXi.js";
|
|
2
|
+
export { OFFICIAL_PLUGINS, OFFICIAL_REGISTRY_OPTIONS, checksCorePlugin, claudeCodePlugin, codexPlugin, cursorPlugin, officialContentPlugin };
|