@cubis/foundry 0.3.17 → 0.3.19
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/Ai Agent Workflow/workflows/agent-environment-setup/platforms/antigravity/rules/GEMINI.md +12 -0
- package/Ai Agent Workflow/workflows/agent-environment-setup/platforms/codex/rules/AGENTS.md +12 -0
- package/Ai Agent Workflow/workflows/agent-environment-setup/platforms/copilot/rules/AGENTS.md +12 -0
- package/Ai Agent Workflow/workflows/agent-environment-setup/platforms/copilot/rules/copilot-instructions.md +12 -0
- package/Ai Agent Workflow/workflows/agent-environment-setup/platforms/cursor/rules/.cursorrules +12 -0
- package/Ai Agent Workflow/workflows/agent-environment-setup/platforms/windsurf/rules/.windsurfrules +12 -0
- package/package.json +1 -1
package/Ai Agent Workflow/workflows/agent-environment-setup/platforms/antigravity/rules/GEMINI.md
CHANGED
|
@@ -13,6 +13,18 @@ This file defines mandatory behavior for Antigravity projects installed via `cbx
|
|
|
13
13
|
- Skills: `.agent/skills`
|
|
14
14
|
- Rules file: `.agent/rules/GEMINI.md`
|
|
15
15
|
|
|
16
|
+
## Startup Transparency (Required)
|
|
17
|
+
|
|
18
|
+
Before executing workflows, agents, or code edits, publish a short `Decision Log` that is visible to the user:
|
|
19
|
+
|
|
20
|
+
1. Rule file(s) read at startup (at minimum `.agent/rules/GEMINI.md`, plus any additional rule files loaded).
|
|
21
|
+
2. Workflow decision (`/workflow` or direct mode) and why it was chosen.
|
|
22
|
+
3. Agent routing decision (`@agent` or direct mode) and why it was chosen.
|
|
23
|
+
4. Skill loading decision (skill names loaded) and why they were chosen.
|
|
24
|
+
|
|
25
|
+
If routing changes during the task, publish a `Decision Update` before continuing.
|
|
26
|
+
Keep this user-visible summary concise and factual; do not expose private chain-of-thought.
|
|
27
|
+
|
|
16
28
|
## 2) Workflow-First Contract
|
|
17
29
|
|
|
18
30
|
1. If the user explicitly requests a slash command, run that workflow first.
|
|
@@ -9,6 +9,18 @@ This file defines mandatory behavior for Codex projects installed via `cbx workf
|
|
|
9
9
|
- Skills: `.agents/skills`
|
|
10
10
|
- Rules file: `AGENTS.md`
|
|
11
11
|
|
|
12
|
+
## Startup Transparency (Required)
|
|
13
|
+
|
|
14
|
+
Before executing workflows, agents, or code edits, publish a short `Decision Log` that is visible to the user:
|
|
15
|
+
|
|
16
|
+
1. Rule file(s) read at startup (at minimum `AGENTS.md`, plus any additional rule files loaded).
|
|
17
|
+
2. Workflow decision (`$workflow-*` or direct mode) and why it was chosen.
|
|
18
|
+
3. Agent routing decision (`$agent-*` or direct mode) and why it was chosen.
|
|
19
|
+
4. Skill loading decision (skill names loaded) and why they were chosen.
|
|
20
|
+
|
|
21
|
+
If routing changes during the task, publish a `Decision Update` before continuing.
|
|
22
|
+
Keep this user-visible summary concise and factual; do not expose private chain-of-thought.
|
|
23
|
+
|
|
12
24
|
## 2) Skill-Based Workflow
|
|
13
25
|
|
|
14
26
|
1. Codex operates primarily through **Skills** and **Rules**.
|
package/Ai Agent Workflow/workflows/agent-environment-setup/platforms/copilot/rules/AGENTS.md
CHANGED
|
@@ -9,6 +9,18 @@ This file defines mandatory behavior for GitHub Copilot projects installed via `
|
|
|
9
9
|
- Skills: `.github/skills`
|
|
10
10
|
- Rules file (project): `.github/copilot-instructions.md`
|
|
11
11
|
|
|
12
|
+
## Startup Transparency (Required)
|
|
13
|
+
|
|
14
|
+
Before executing workflows, agents, or code edits, publish a short `Decision Log` that is visible to the user:
|
|
15
|
+
|
|
16
|
+
1. Rule file(s) read at startup (at minimum `.github/copilot-instructions.md`, plus any additional rule files loaded).
|
|
17
|
+
2. Workflow decision (`/workflow` or direct mode) and why it was chosen.
|
|
18
|
+
3. Agent routing decision (`@agent` or direct mode) and why it was chosen.
|
|
19
|
+
4. Skill loading decision (skill names loaded) and why they were chosen.
|
|
20
|
+
|
|
21
|
+
If routing changes during the task, publish a `Decision Update` before continuing.
|
|
22
|
+
Keep this user-visible summary concise and factual; do not expose private chain-of-thought.
|
|
23
|
+
|
|
12
24
|
## 2) Workflow-First Contract
|
|
13
25
|
|
|
14
26
|
1. If the user explicitly requests a slash command, run that workflow first.
|
|
@@ -9,6 +9,18 @@ This file defines mandatory behavior for GitHub Copilot projects installed via `
|
|
|
9
9
|
- Skills: `.github/skills`
|
|
10
10
|
- Rules file (project): `.github/copilot-instructions.md`
|
|
11
11
|
|
|
12
|
+
## Startup Transparency (Required)
|
|
13
|
+
|
|
14
|
+
Before executing workflows, agents, or code edits, publish a short `Decision Log` that is visible to the user:
|
|
15
|
+
|
|
16
|
+
1. Rule file(s) read at startup (at minimum `.github/copilot-instructions.md`, plus any additional rule files loaded).
|
|
17
|
+
2. Workflow decision (`/workflow` or direct mode) and why it was chosen.
|
|
18
|
+
3. Agent routing decision (`@agent` or direct mode) and why it was chosen.
|
|
19
|
+
4. Skill loading decision (skill names loaded) and why they were chosen.
|
|
20
|
+
|
|
21
|
+
If routing changes during the task, publish a `Decision Update` before continuing.
|
|
22
|
+
Keep this user-visible summary concise and factual; do not expose private chain-of-thought.
|
|
23
|
+
|
|
12
24
|
## 2) Workflow-First Contract
|
|
13
25
|
|
|
14
26
|
1. If the user explicitly requests a slash command, run that workflow first.
|
package/Ai Agent Workflow/workflows/agent-environment-setup/platforms/cursor/rules/.cursorrules
CHANGED
|
@@ -9,6 +9,18 @@ This file defines mandatory behavior for Cursor projects installed via `cbx work
|
|
|
9
9
|
- Skills: `.cursor/skills`
|
|
10
10
|
- Rules file: `.cursorrules`
|
|
11
11
|
|
|
12
|
+
## Startup Transparency (Required)
|
|
13
|
+
|
|
14
|
+
Before executing workflows, agents, or code edits, publish a short `Decision Log` that is visible to the user:
|
|
15
|
+
|
|
16
|
+
1. Rule file(s) read at startup (at minimum `.cursorrules`, plus any additional rule files loaded).
|
|
17
|
+
2. Workflow decision (`/workflow` or direct mode) and why it was chosen.
|
|
18
|
+
3. Agent routing decision (`@agent` or direct mode) and why it was chosen.
|
|
19
|
+
4. Skill loading decision (skill names loaded) and why they were chosen.
|
|
20
|
+
|
|
21
|
+
If routing changes during the task, publish a `Decision Update` before continuing.
|
|
22
|
+
Keep this user-visible summary concise and factual; do not expose private chain-of-thought.
|
|
23
|
+
|
|
12
24
|
## 2) Smart Skill Selection (TIER 0)
|
|
13
25
|
|
|
14
26
|
Before starting ANY task, the agent MUST:
|
package/Ai Agent Workflow/workflows/agent-environment-setup/platforms/windsurf/rules/.windsurfrules
CHANGED
|
@@ -9,6 +9,18 @@ This file defines mandatory behavior for Windsurf projects installed via `cbx wo
|
|
|
9
9
|
- Skills: `.windsurf/skills`
|
|
10
10
|
- Rules file: `.windsurfrules`
|
|
11
11
|
|
|
12
|
+
## Startup Transparency (Required)
|
|
13
|
+
|
|
14
|
+
Before executing workflows, agents, or code edits, publish a short `Decision Log` that is visible to the user:
|
|
15
|
+
|
|
16
|
+
1. Rule file(s) read at startup (at minimum `.windsurfrules`, plus any additional rule files loaded).
|
|
17
|
+
2. Workflow decision (`/workflow` or direct mode) and why it was chosen.
|
|
18
|
+
3. Agent routing decision (`@agent` or direct mode) and why it was chosen.
|
|
19
|
+
4. Skill loading decision (skill names loaded) and why they were chosen.
|
|
20
|
+
|
|
21
|
+
If routing changes during the task, publish a `Decision Update` before continuing.
|
|
22
|
+
Keep this user-visible summary concise and factual; do not expose private chain-of-thought.
|
|
23
|
+
|
|
12
24
|
## 2) Smart Skill Selection (TIER 0)
|
|
13
25
|
|
|
14
26
|
Before starting ANY task, the agent MUST:
|