-
-
Notifications
You must be signed in to change notification settings - Fork 186
chore: add .agentsroom to .gitignore #460
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
f942667
0466ecd
b76472a
e69026e
7df615b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| # AgentsRoom: personal files (not committed to git) | ||
| *-personal.json | ||
| agents-local.json | ||
| sessions/ | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,10 @@ | ||||||||||||||||||||||||||||||||||||||
| [ | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| "role": "fullstack", | ||||||||||||||||||||||||||||||||||||||
| "model": "opus", | ||||||||||||||||||||||||||||||||||||||
| "customName": "Full-Stack Developer", | ||||||||||||||||||||||||||||||||||||||
| "isPersonal": false, | ||||||||||||||||||||||||||||||||||||||
| "id": "agent-1776361243376-3sekdc", | ||||||||||||||||||||||||||||||||||||||
| "claudeSessionId": "96773a93-be2a-45a9-a732-ceb224d3d0e5" | ||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||
| ] | ||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+1
to
+10
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Critical/Major: File won't be tracked, and contains session-specific data that shouldn't be committed. Two issues:
The PR description states the goal is to "prevent agent session files from being committed," which suggests these session identifiers should not be in version control. 🔧 Recommended approachIf the intent is to provide a template configuration:
[
{
"role": "fullstack",
"model": "opus",
"customName": "Full-Stack Developer",
"isPersonal": false,
- "id": "agent-1776361243376-3sekdc",
- "claudeSessionId": "96773a93-be2a-45a9-a732-ceb224d3d0e5"
}
]
📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,4 @@ | ||||||||||||||||||||
| { | ||||||||||||||||||||
| "folders": [], | ||||||||||||||||||||
| "prompts": [] | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
Comment on lines
+1
to
+4
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note: File won't be tracked due to root This file won't be tracked because the root Additionally, consider adding a trailing newline at the end of the file to follow common JSON file conventions. 📝 Optional: Add trailing newline {
"folders": [],
"prompts": []
}
+📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -71,4 +71,5 @@ docs/superpowers | |||
| # Only .claude.settings.json should be committed | ||||
| .claude/settings.local.json | ||||
| .claude/worktrees/* | ||||
| .agentsroom | ||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Critical: Ignoring entire Adding Based on the
This line should be removed to allow the 🔧 Proposed fix: Remove this line-.agentsroomRely on 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||
| solo.yml | ||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Critical: This file won't be tracked due to root
.gitignoreconflict.The root
.gitignoreadds.agentsroomon line 74, which ignores the entire.agentsroom/directory. This means.agentsroom/.gitignoreitself won't be tracked by git, making these ignore patterns ineffective.If the intent is to track the
.agentsroom/directory structure while excluding only personal/local data, the root.gitignoreshould NOT ignore the entire directory. Instead, rely solely on this.agentsroom/.gitignoreto exclude personal files.🔧 Proposed fix: Remove `.agentsroom` from root `.gitignore`
Remove line 74 from the root
.gitignorefile:-.agentsroomThis allows
.agentsroom/.gitignoreto control what is excluded within that directory.🤖 Prompt for AI Agents