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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,7 @@ class MyPlugin:
runtime.add_post_process_hook(self.id, self.after_task)
await runtime.submit(task)

async def shutdown(self):
...
async def shutdown(self): ...
```

Plugins send work to the core by creating `AgentTask`:
Expand Down
8 changes: 4 additions & 4 deletions packages/nyanpasu-github-pr-maker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ POST /plugins/github-pr-maker/tasks

```json
{
"repo": "owner/repo",
"task": "Implement the requested change and update tests.",
"base_branch": "main",
"title": "Implement requested change"
"repo": "owner/repo",
"task": "Implement the requested change and update tests.",
"base_branch": "main",
"title": "Implement requested change"
}
```

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ dev = [
"nyanpasu-github",
"nyanpasu-github-pr-maker",
"nyanpasu-github-reviewer",
"ty>=0.0.72",
"ruff>=0.16.3",
"ty>=0.0.77",
"ruff>=0.16.5",
"pytest>=9.1.1",
"pytest-rerunfailures>=16.6",
]
Expand Down
Loading