-
Notifications
You must be signed in to change notification settings - Fork 0
Add agent-knowledge as git submodule #6
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
Changes from all commits
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,16 @@ | ||
| { | ||
| "version": "1.0.0", | ||
| "tasks": [ | ||
| { | ||
| "id": "2", | ||
| "source": "agent-sh/agent-sh.dev", | ||
| "title": "Org Architecture: Documentation & Website Strategy", | ||
| "branch": "feature/org-docs-strategy-2", | ||
| "worktreePath": "/home/ubuntu/agent-sh/worktrees/org-docs-strategy-2", | ||
| "claimedAt": "2026-02-22T00:00:00Z", | ||
| "claimedBy": "worktree-manager", | ||
| "status": "claimed", | ||
|
Comment on lines
+9
to
+12
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.
This file stores mutable, workstation-specific scheduler state ( Useful? React with 👍 / 👎. |
||
| "lastActivityAt": "2026-02-22T00:00:00Z" | ||
|
Comment on lines
+10
to
+13
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. The |
||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| [submodule "agent-knowledge"] | ||
| path = agent-knowledge | ||
| url = https://github.com/agent-sh/agent-knowledge.git |
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.
The
worktreePathis using a hardcoded absolute path (/home/ubuntu/...). This is not portable and will cause issues for other developers on different machines. This path should be relative, configurable via an environment variable, or if it's a user-specific setting, this file should be added to.gitignore.