@clue-ai/cli 0.0.9 → 0.0.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.
- package/README.md +37 -26
- package/bin/clue-cli.mjs +93 -54
- package/package.json +1 -1
- package/src/cli-invocation.mjs +34 -0
- package/src/command-spec.mjs +3 -0
- package/src/init-tool.mjs +2 -1
- package/src/lifecycle-guard.mjs +168 -103
- package/src/lifecycle-init.mjs +593 -187
- package/src/semantic-agent-runner.mjs +3 -1
- package/src/setup-check.mjs +641 -47
- package/src/setup-help.mjs +69 -0
- package/src/setup-prepare.mjs +78 -15
- package/src/setup-tool.mjs +421 -388
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { clueCliCommand } from "./cli-invocation.mjs";
|
|
2
|
+
|
|
1
3
|
export const SEMANTIC_AGENT_RUNNER_VERSION = "semantic-agent-runner-v1";
|
|
2
4
|
|
|
3
5
|
export const SEMANTIC_AGENT_ROLE_IDS = {
|
|
@@ -14,7 +16,7 @@ const requiredRoleIds = new Set(Object.values(SEMANTIC_AGENT_ROLE_IDS));
|
|
|
14
16
|
export const semanticAgentSkillBundle = () => ({
|
|
15
17
|
runner_version: SEMANTIC_AGENT_RUNNER_VERSION,
|
|
16
18
|
execution_model: "ci_semantic_agent_runner",
|
|
17
|
-
ci_entrypoint: "
|
|
19
|
+
ci_entrypoint: clueCliCommand("semantic-gen"),
|
|
18
20
|
rules: [
|
|
19
21
|
"GitHub Actions runs only the CLI; the CLI owns route coverage, AI role orchestration, schema validation, and upload.",
|
|
20
22
|
"Mechanically scan every route before any AI call.",
|