a suite of tools for the development lifecycle. manage projects, scan codebases for tasks, publish technical writing, and track your digital footprint.
organize your projects with GitHub integration, milestone tracking, and automatic versioning. link repositories, set goals, and track progress from a single dashboard.
scan your codebase for @todo comments and extract them as trackable tasks. automatic detection with smart tagging, priority assignment, and diff-based updates.
write and publish with a full markdown editor. organize with categories and tags, link posts to projects, and access everything through a REST API.
aggregate your activity from GitHub, Reddit, Bluesky and more into one timeline. see your digital footprint across platforms in a single view.
1 export async function refresh( 2 session: Session 3 ) { 4 const token = session.token; 5 6 // @todo implement token refresh 7 // with retry logic 8 9 return { expired: true }; 10 }
src/auth/session.ts · line 6
track every project with status, version, and linked resources.
a 2D game engine built with WebGL and TypeScript
a minimal theme for the devpad blog platform
command-line interface for managing devpad resources
scan your codebase or create tasks manually. filter by project, tag, or priority.
auth module needs graceful retry on token expiry
settings page needs a theme switcher component
document all public endpoints with examples
oauth callback was redirecting to wrong page
write posts linked to projects. markdown editor with live preview.
a deep dive into WebGL rendering pipelines and entity component systems
why every feature in devpad is an API call and how to build your own integrations
every feature is an API call. build your own dashboard, CLI, or bot.
$ curl -s https://api.devpad.tools/v1/tasks \
-H "Authorization: Bearer dp_sk_..." | jq '.[:2]'
[
{
"title": "implement token refresh",
"priority": "HIGH",
"progress": "UNSTARTED",
"project": "game-engine"
},
{
"title": "add rate limiting",
"priority": "MEDIUM",
"progress": "IN_PROGRESS",
"project": "game-engine"
}
] GitHub, Reddit, Bluesky, YouTube — one feed.
every button in devpad is an API call. build your own workflows with the REST API, CLI, or MCP server.
AI tool integration for Claude, Cursor, and opencode. ask your assistant to create tasks or query data directly.
command-line interface for scripting and automation. pipe devpad data into other tools or manage projects from your terminal.
the devpad dashboard at devpad.tools. manage projects, review scanned tasks, write blog posts, and browse your timeline.
RESTful · Bearer token auth · full CRUD
pull projects, blog posts, and activity into your personal website. use the API to build a custom portfolio that stays in sync.
link repositories and scan for TODO comments automatically. devpad detects changes on push and creates or updates tasks.
aggregate your activity from GitHub, Reddit, Bluesky, and more. display a unified timeline of your digital footprint anywhere.
$ curl -s https://api.devpad.tools/v1/projects \
-H "Authorization: Bearer dp_sk_..." | jq '.[0]'
{
"name": "game-engine",
"status": "LIVE",
"current_version": "2.1.0",
"repo_url": "https://github.com/f0rbit/engine"
} sign in with GitHub to begin.