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
15 changes: 15 additions & 0 deletions .cursor/mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,21 @@
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_TOKEN_HERE"
}
},
"serena": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
".:/workspaces/projects/repo",
"ghcr.io/oraios/serena:latest",
"serena",
"start-mcp-server",
"--project",
"/workspaces/projects/repo"
]
}
}
}
4 changes: 4 additions & 0 deletions .serena/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/cache
/project.local.yml
/memories

40 changes: 40 additions & 0 deletions .serena/project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Serena project config — Java (LSP) for this repo
# Docs: https://oraios.github.io/serena/

project_name: "cursor-rules-java"

languages:
- java

ignore_all_files_in_gitignore: true

ignored_paths: []

read_only: false

excluded_tools: []

included_optional_tools: []

initial_prompt: |
Read the repository root AGENTS.md for project role, tech stack, layout, commands, Git workflow, and boundaries before making changes.

encoding: utf-8

base_modes:

default_modes:

fixed_tools: []

symbol_info_budget:

language_backend:

read_only_memory_patterns: []

line_ending:

ignored_memory_patterns: []

ls_specific_settings: {}
Loading