docs #4: Document Hermes Communication Patterns #23
@@ -154,7 +154,7 @@ Steps:
|
||||
4. cat /tmp/findings-4.md
|
||||
5. Post findings as Gitea issue comment
|
||||
|
||||
Gitea: <GITEA_URL>
|
||||
Gitea: git.example.com
|
||||
Token: <YOUR_GITEA_TOKEN>
|
||||
Repo: shoko/kugetsu
|
||||
Issue: #4""",
|
||||
@@ -193,7 +193,7 @@ All agent communication flows through Gitea issues/PRs as the async record.
|
||||
EOF
|
||||
|
||||
# Post as issue comment
|
||||
curl -X POST "<GITEA_URL>/api/v1/repos/shoko/kugetsu/issues/4/comments" \
|
||||
curl -X POST "git.example.com/api/v1/repos/shoko/kugetsu/issues/4/comments" \
|
||||
-H "Authorization: token <YOUR_GITEA_TOKEN>" \
|
||||
-H "Content-Type: application/json" \
|
||||
-H "User-Agent: Kugetsu-Subagent/1.0" \
|
||||
@@ -207,7 +207,7 @@ curl -X POST "<GITEA_URL>/api/v1/repos/shoko/kugetsu/issues/4/comments" \
|
||||
|
||||
```bash
|
||||
# PM posts task assignment as issue comment
|
||||
curl -X POST "<GITEA_URL>/api/v1/repos/shoko/kugetsu/issues/3/comments" \
|
||||
curl -X POST "git.example.com/api/v1/repos/shoko/kugetsu/issues/3/comments" \
|
||||
-H "Authorization: token <YOUR_GITEA_TOKEN>" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{
|
||||
@@ -227,7 +227,7 @@ git checkout -b fix/issue-3-capacity-test main
|
||||
git push -u origin fix/issue-3-capacity-test
|
||||
|
||||
# Create PR via API
|
||||
curl -X POST "<GITEA_URL>/api/v1/repos/shoko/kugetsu/pulls" \
|
||||
curl -X POST "git.example.com/api/v1/repos/shoko/kugetsu/pulls" \
|
||||
-H "Authorization: token <YOUR_GITEA_TOKEN>" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{
|
||||
|
||||
Reference in New Issue
Block a user