Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/social-toes-melt.md

This file was deleted.

7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Changelog

## 3.13.5

### Patch Changes

- a04f9d3: merge from cline version 3.72.0

## 3.13.4

### Patch Changes

merge from cline v3.62.0 (see [changelog](https://github.com/cline/cline/blob/main/CHANGELOG.md#3620)).


## [3.13.3]

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "HAI Build Code Generator",
"description": "Human AI (HAI) VS Code extension that streamlines development workflows through AI-powered task execution, intelligent file management, and automated code generation. Built on HAI, it integrates with various LLMs to enhance productivity and code quality while simplifying complex development tasks.",
"clineVersion": "3.72.0",
"version": "3.13.4",
"version": "3.13.5",
"icon": "assets/icons/[email protected]",
"engines": {
"vscode": "^1.84.0"
Expand Down
4 changes: 2 additions & 2 deletions src/core/task/tools/subagent/AgentConfigLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as path from "path"
import { z } from "zod"
import { buildSubagentToolName } from "./SubagentToolName"

/** Default Directory for agent configurations: ~/Documents/Cline/Agents */
/** Default Directory for agent configurations: ~/Documents/HAI/Agents */
export const AGENTS_CONFIG_DIRECTORY_NAME = "Agents"
const SUBAGENT_DYNAMIC_TOOL_NAMESPACE = "subagent"

Expand Down Expand Up @@ -103,7 +103,7 @@ export function parseAgentConfigFromYaml(content: string): AgentBaseConfig {
}

export function getAgentsConfigPath(homeDir = os.homedir()): string {
return path.join(homeDir, "Documents", "Cline", AGENTS_CONFIG_DIRECTORY_NAME)
return path.join(homeDir, "Documents", "HAI", AGENTS_CONFIG_DIRECTORY_NAME)
}

function normalizeAgentName(name: string): string {
Expand Down
Loading