Skip to content

Commit 64b5ad3

Browse files
cosmyoclaude
andcommitted
refactor: generate CLAUDE.md instead of AGENTS.md in uipath new
- Replace AGENTS.md.template with CLAUDE.md.template in openai-agents, agent-framework, google-adk - Skills are now handled by the separate uipath-claude-plugins repo - Bump versions: openai-agents 0.0.9, google-adk 0.0.6, agent-framework 0.0.11 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b6f58f0 commit 64b5ad3

9 files changed

Lines changed: 38 additions & 23 deletions

File tree

packages/uipath-agent-framework/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-agent-framework"
3-
version = "0.0.10"
3+
version = "0.0.11"
44
description = "Python SDK that enables developers to build and deploy Microsoft Agent Framework agents to the UiPath Cloud Platform"
55
readme = "README.md"
66
requires-python = ">=3.11"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# UiPath Agent Framework Project
2+
3+
This is a UiPath coded agent project using the Microsoft Agent Framework.
4+
5+
Run with: `uipath run agent '{"messages": "Hello!"}'`

packages/uipath-agent-framework/src/uipath_agent_framework/_cli/cli_new.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ def generate_script(target_directory):
2222
target_path = os.path.join(target_directory, "agent_framework.json")
2323
shutil.copyfile(template_config_path, target_path)
2424

25-
template_agents_md_path = os.path.join(
26-
os.path.dirname(__file__), "_templates/AGENTS.md.template"
25+
template_claude_md_path = os.path.join(
26+
os.path.dirname(__file__), "_templates/CLAUDE.md.template"
2727
)
28-
target_agents_md = os.path.join(target_directory, "AGENTS.md")
29-
if os.path.exists(template_agents_md_path):
30-
shutil.copyfile(template_agents_md_path, target_agents_md)
28+
target_claude_md = os.path.join(target_directory, "CLAUDE.md")
29+
if os.path.exists(template_claude_md_path):
30+
shutil.copyfile(template_claude_md_path, target_claude_md)
3131

3232

3333
def generate_pyproject(target_directory, project_name):
@@ -58,7 +58,7 @@ def agent_framework_new_middleware(name: str) -> MiddlewareResult:
5858
generate_script(directory)
5959
console.success("Created 'main.py' file.")
6060
console.success("Created 'agent_framework.json' file.")
61-
console.success("Created 'AGENTS.md' file.")
61+
console.success("Created 'CLAUDE.md' file.")
6262
generate_pyproject(directory, name)
6363
console.success("Created 'pyproject.toml' file.")
6464
init_command = """uipath init"""

packages/uipath-google-adk/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-google-adk"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
description = "Python SDK that enables developers to build and deploy Google ADK agents to the UiPath Cloud Platform"
55
readme = "README.md"
66
requires-python = ">=3.11"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# UiPath Google ADK Agent Project
2+
3+
This is a UiPath coded agent project using Google ADK (Agent Development Kit).
4+
5+
Run with: `uipath run agent '{"messages": "Hello!"}'`

packages/uipath-google-adk/src/uipath_google_adk/_cli/cli_new.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ def generate_script(target_directory):
2222
target_path = os.path.join(target_directory, "google_adk.json")
2323
shutil.copyfile(template_google_adk_json_path, target_path)
2424

25-
# Copy Google ADK-specific AGENTS.md template (overrides generic one)
26-
template_agents_md_path = os.path.join(
27-
os.path.dirname(__file__), "_templates/AGENTS.md.template"
25+
# Copy Google ADK-specific CLAUDE.md template
26+
template_claude_md_path = os.path.join(
27+
os.path.dirname(__file__), "_templates/CLAUDE.md.template"
2828
)
29-
target_agents_md = os.path.join(target_directory, "AGENTS.md")
30-
if os.path.exists(template_agents_md_path):
31-
shutil.copyfile(template_agents_md_path, target_agents_md)
29+
target_claude_md = os.path.join(target_directory, "CLAUDE.md")
30+
if os.path.exists(template_claude_md_path):
31+
shutil.copyfile(template_claude_md_path, target_claude_md)
3232

3333

3434
def generate_pyproject(target_directory, project_name):
@@ -59,7 +59,7 @@ def google_adk_new_middleware(name: str) -> MiddlewareResult:
5959
generate_script(directory)
6060
console.success("Created 'main.py' file.")
6161
console.success("Created 'google_adk.json' file.")
62-
console.success("Created 'AGENTS.md' file.")
62+
console.success("Created 'CLAUDE.md' file.")
6363
generate_pyproject(directory, name)
6464
console.success("Created 'pyproject.toml' file.")
6565
init_command = """uipath init"""

packages/uipath-openai-agents/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-openai-agents"
3-
version = "0.0.8"
3+
version = "0.0.9"
44
description = "Python SDK that enables developers to build and deploy OpenAI agents to the UiPath Cloud Platform"
55
readme = "README.md"
66
requires-python = ">=3.11"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# UiPath OpenAI Agents Project
2+
3+
This is a UiPath coded agent project using the OpenAI Agents SDK.
4+
5+
Run with: `uipath run agent '{"messages": "Hello!"}'`

packages/uipath-openai-agents/src/uipath_openai_agents/_cli/cli_new.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ def generate_script(target_directory):
2222
target_path = os.path.join(target_directory, "openai_agents.json")
2323
shutil.copyfile(template_openai_agents_json_path, target_path)
2424

25-
# Copy OpenAI-specific AGENTS.md template (overrides generic one)
26-
template_agents_md_path = os.path.join(
27-
os.path.dirname(__file__), "_templates/AGENTS.md.template"
25+
# Copy OpenAI-specific CLAUDE.md template
26+
template_claude_md_path = os.path.join(
27+
os.path.dirname(__file__), "_templates/CLAUDE.md.template"
2828
)
29-
target_agents_md = os.path.join(target_directory, "AGENTS.md")
30-
if os.path.exists(template_agents_md_path):
31-
shutil.copyfile(template_agents_md_path, target_agents_md)
29+
target_claude_md = os.path.join(target_directory, "CLAUDE.md")
30+
if os.path.exists(template_claude_md_path):
31+
shutil.copyfile(template_claude_md_path, target_claude_md)
3232

3333

3434
def generate_pyproject(target_directory, project_name):
@@ -59,7 +59,7 @@ def openai_agents_new_middleware(name: str) -> MiddlewareResult:
5959
generate_script(directory)
6060
console.success("Created 'main.py' file.")
6161
console.success("Created 'openai_agents.json' file.")
62-
console.success("Created 'AGENTS.md' file.")
62+
console.success("Created 'CLAUDE.md' file.")
6363
generate_pyproject(directory, name)
6464
console.success("Created 'pyproject.toml' file.")
6565
init_command = """uipath init"""

0 commit comments

Comments
 (0)