Skip to content

Commit cf70517

Browse files
authored
Merge pull request #73 from TrueNine/dev
v0.0.43
2 parents 20694a7 + eda82e3 commit cf70517

File tree

11 files changed

+197
-22
lines changed

11 files changed

+197
-22
lines changed

.ai/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
meta/

.ai/locale/AGENTS.locale.md

Whitespace-only changes.

.ai/locale/gradle/AGENTS.locale.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
## libs.versions.toml File Description
2+
3+
- `project` Current project dependency version number
4+
- `java` Current project Java version number
5+
- `org-gradle` Gradle version number
6+
- `intellij-platform-*` IntelliJ plugin development version number
7+
8+
### Usage in `buildSrc` or `includeBuild`
9+
10+
Introduce `libs.versions.toml` as a dependency in the `settings.gradle.kts` of `buildSrc` or `build-logic` to achieve unified project-wide version management
11+
12+
```kotlin
13+
versionCatalogs {
14+
create("libs") {
15+
from(files("../gradle/libs.versions.toml"))
16+
}
17+
}
18+
```
19+
20+
Then inject in `build.gradle.kts`
21+
22+
```kotlin
23+
dependencies {
24+
implementation(files(libs.javaClass.superclass.protectionDomain.codeSource.location))
25+
}
26+
```
27+
28+
If you need to use it in plugins, define variables like this:
29+
30+
```kotlin
31+
val libs = the<org.gradle.accessors.dm.LibrariesForLibs>()
32+
```

.ai/locale/oss/AGENTS.locale.md

Whitespace-only changes.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ TODO.*
7676
/.intellijPlatform/
7777
node_modules/
7878
pnpm-lock.yaml
79-
.ai/
8079
.claude/
8180
.cursor/
8281
CLAUDE.md

.run/Clean Build.run.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Clean Build" type="GradleRunConfiguration" factoryName="Gradle">
3+
<ExternalSystemSettings>
4+
<option name="executionName" />
5+
<option name="externalProjectPath" value="$PROJECT_DIR$" />
6+
<option name="externalSystemIdString" value="GRADLE" />
7+
<option name="scriptParameters" value="" />
8+
<option name="taskDescriptions">
9+
<list />
10+
</option>
11+
<option name="taskNames">
12+
<list>
13+
<option value=":clean" />
14+
</list>
15+
</option>
16+
<option name="vmOptions" />
17+
</ExternalSystemSettings>
18+
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
19+
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
20+
<EXTENSION ID="com.intellij.execution.ExternalSystemRunConfigurationJavaExtension">
21+
<extension name="net.ashald.envfile">
22+
<option name="IS_ENABLED" value="false" />
23+
<option name="IS_SUBST" value="false" />
24+
<option name="IS_PATH_MACRO_SUPPORTED" value="false" />
25+
<option name="IS_IGNORE_MISSING_FILES" value="false" />
26+
<option name="IS_ENABLE_EXPERIMENTAL_INTEGRATIONS" value="false" />
27+
<ENTRIES>
28+
<ENTRY IS_ENABLED="true" PARSER="runconfig" IS_EXECUTABLE="false" />
29+
</ENTRIES>
30+
</extension>
31+
</EXTENSION>
32+
<DebugAllEnabled>false</DebugAllEnabled>
33+
<RunAsTest>false</RunAsTest>
34+
<method v="2" />
35+
</configuration>
36+
</component>

.run/Format Code.run.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Format Code" type="GradleRunConfiguration" factoryName="Gradle">
3+
<ExternalSystemSettings>
4+
<option name="executionName" />
5+
<option name="externalProjectPath" value="$PROJECT_DIR$" />
6+
<option name="externalSystemIdString" value="GRADLE" />
7+
<option name="scriptParameters" value="" />
8+
<option name="taskDescriptions">
9+
<list />
10+
</option>
11+
<option name="taskNames">
12+
<list>
13+
<option value=":spotlessApply" />
14+
</list>
15+
</option>
16+
<option name="vmOptions" />
17+
</ExternalSystemSettings>
18+
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
19+
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
20+
<EXTENSION ID="com.intellij.execution.ExternalSystemRunConfigurationJavaExtension">
21+
<extension name="net.ashald.envfile">
22+
<option name="IS_ENABLED" value="false" />
23+
<option name="IS_SUBST" value="false" />
24+
<option name="IS_PATH_MACRO_SUPPORTED" value="false" />
25+
<option name="IS_IGNORE_MISSING_FILES" value="false" />
26+
<option name="IS_ENABLE_EXPERIMENTAL_INTEGRATIONS" value="false" />
27+
<ENTRIES>
28+
<ENTRY IS_ENABLED="true" PARSER="runconfig" IS_EXECUTABLE="false" />
29+
</ENTRIES>
30+
</extension>
31+
</EXTENSION>
32+
<DebugAllEnabled>false</DebugAllEnabled>
33+
<RunAsTest>false</RunAsTest>
34+
<method v="2" />
35+
</configuration>
36+
</component>

.run/Run IDE with Plugin.run.xml renamed to .run/Run IDE with IDEA MCP Plugin.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration default="false" name="Run IDE with Plugin" type="GradleRunConfiguration" factoryName="Gradle">
2+
<configuration default="false" name="Run IDE with IDEA MCP Plugin" type="GradleRunConfiguration" factoryName="Gradle">
33
<log_file alias="idea.log" path="$PROJECT_DIR$/ide/ide-idea-mcp/build/idea-sandbox/system/log/idea.log" />
44
<ExternalSystemSettings>
55
<option name="executionName" />

.run/Test All Code.run.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Test All Code" type="GradleRunConfiguration" factoryName="Gradle">
3+
<ExternalSystemSettings>
4+
<option name="executionName" />
5+
<option name="externalProjectPath" value="$PROJECT_DIR$" />
6+
<option name="externalSystemIdString" value="GRADLE" />
7+
<option name="scriptParameters" value="" />
8+
<option name="taskDescriptions">
9+
<list />
10+
</option>
11+
<option name="taskNames">
12+
<list>
13+
<option value=":check" />
14+
</list>
15+
</option>
16+
<option name="vmOptions" />
17+
</ExternalSystemSettings>
18+
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
19+
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
20+
<EXTENSION ID="com.intellij.execution.ExternalSystemRunConfigurationJavaExtension">
21+
<extension name="net.ashald.envfile">
22+
<option name="IS_ENABLED" value="false" />
23+
<option name="IS_SUBST" value="false" />
24+
<option name="IS_PATH_MACRO_SUPPORTED" value="false" />
25+
<option name="IS_IGNORE_MISSING_FILES" value="false" />
26+
<option name="IS_ENABLE_EXPERIMENTAL_INTEGRATIONS" value="false" />
27+
<ENTRIES>
28+
<ENTRY IS_ENABLED="true" PARSER="runconfig" IS_EXECUTABLE="false" />
29+
</ENTRIES>
30+
</extension>
31+
</EXTENSION>
32+
<DebugAllEnabled>false</DebugAllEnabled>
33+
<RunAsTest>false</RunAsTest>
34+
<method v="2" />
35+
</configuration>
36+
</component>

.vscode/settings.json

Lines changed: 41 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,43 @@
11
{
2-
"kiroAgent.configureMCP": "Enabled",
3-
"kiroAgent.trustedCommands": [
4-
"./gradlew *",
5-
"gradle *",
6-
"mv *"
7-
]
2+
"explorer.excludeGitIgnore": true,
3+
"files.exclude": {
4+
"**/.gradle": true,
5+
"**/build": true,
6+
"**/build-cache": true,
7+
"**/generated": true,
8+
"**/.generated": true,
9+
"**/.xcodemap": true,
10+
"**/logs": true,
11+
"**/.logs": true,
12+
"**/*.log": true,
13+
"**/.intellijPlatform": true,
14+
"**/node_modules": true,
15+
"**/.claude": true,
16+
"**/.cursor": true,
17+
"**/.playwright-mcp": true,
18+
"**/.mcp.json": true,
19+
"**/pnpm-lock.yaml": true,
20+
"**/.env": true
21+
},
22+
"search.exclude": {
23+
"**/.gradle": true,
24+
"**/build": true,
25+
"**/build-cache": true,
26+
"**/generated": true,
27+
"**/.generated": true,
28+
"**/node_modules": true,
29+
"**/.intellijPlatform": true,
30+
"**/.playwright-mcp": true
31+
},
32+
"explorer.fileNesting.enabled": true,
33+
"explorer.fileNesting.expand": false,
34+
"explorer.fileNesting.patterns": {
35+
"build.gradle.kts": "settings.gradle.kts, gradlew, gradlew.bat, gradle.properties",
36+
"README.md": "LICENSE, TODO.md, .editorconfig, CODEBUDDY.md, .gitignore, .gitattributes",
37+
".env.example": ".env, .env.*"
38+
},
39+
"[markdown]": {
40+
"editor.wordWrap": "off"
41+
},
42+
"workbench.sideBar.location": "right"
843
}

0 commit comments

Comments
 (0)