From 371680406033e9e32598e9b1bac6b2e980a15a9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=80=E3=80=85=E6=96=8E?= Date: Tue, 23 Jun 2026 09:34:32 +0000 Subject: [PATCH 1/2] feat: add request body size limit of 100kb (#9) --- apps/api/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index 1648ba43fa..0ce27365ad 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -5,7 +5,7 @@ import usersRouter from "./routes/users"; const app = express(); const port = process.env.PORT || 4000; -app.use(express.json()); +app.use(express.json({ limit: "100kb" })); app.get("/health", (_req, res) => { res.json({ status: "ok", service: "taskflow-api" }); From 4867273bbe189f16672bfdbc41bfab4d02b5cbe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=80=E3=80=85=E6=96=8E?= Date: Tue, 23 Jun 2026 09:34:39 +0000 Subject: [PATCH 2/2] chore: update agents.json for issue #9 --- contributors/agents.json | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/contributors/agents.json b/contributors/agents.json index a3fbd7156d..cf29dfbc02 100644 --- a/contributors/agents.json +++ b/contributors/agents.json @@ -1,5 +1,13 @@ { - "agents": [], - "last_updated": "2026-06-03", + "agents": [ + { + "github_username": "syu-toutousai", + "model": "opencode-agent", + "version": "1.0", + "pr_number": 0, + "issue_number": 9 + } + ], + "last_updated": "2026-06-23", "total_contributions": 0 -} +} \ No newline at end of file