{"id":28911840,"url":"https://github.com/monomonedula/gopdd","last_synced_at":"2025-08-11T22:32:50.222Z","repository":{"id":148761559,"uuid":"620512388","full_name":"monomonedula/gopdd","owner":"monomonedula","description":" Command line tool for collecting TODO markers from your code, known as Puzzle Driven Development (PDD) ","archived":false,"fork":false,"pushed_at":"2023-09-16T19:59:28.000Z","size":19,"stargazers_count":13,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-21T19:11:25.647Z","etag":null,"topics":["go","golang","management","markers","pdd","puzzle","todo"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/monomonedula.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-03-28T20:39:13.000Z","updated_at":"2024-11-14T06:33:10.000Z","dependencies_parsed_at":"2025-06-21T19:11:24.960Z","dependency_job_id":"5f92762d-b87d-455d-9c88-5b55349c9b34","html_url":"https://github.com/monomonedula/gopdd","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/monomonedula/gopdd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monomonedula%2Fgopdd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monomonedula%2Fgopdd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monomonedula%2Fgopdd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monomonedula%2Fgopdd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/monomonedula","download_url":"https://codeload.github.com/monomonedula/gopdd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monomonedula%2Fgopdd/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269968434,"owners_count":24505412,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","golang","management","markers","pdd","puzzle","todo"],"created_at":"2025-06-21T19:10:25.450Z","updated_at":"2025-08-11T22:32:50.209Z","avatar_url":"https://github.com/monomonedula.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GoPdd \n\n### PDD puzzle collector\n\n\n\nA port of [the original PDD written in Ruby](https://github.com/cqfn/pdd/), but with JSON output and written in Go, so it compiles into a single pretty executable.\n\nExpected formatting and most of the functionality is the same, so feel free to use documentation from the original repo for reference on how to write puzzles.\n\n```\nNAME:\n   GoPdd - Todo puzzle collector\n\nUSAGE:\n   GoPdd [global options] command [command options] [arguments...]\n\nCOMMANDS:\n   help, h  Shows a list of commands or help for one command\n\nGLOBAL OPTIONS:\n   --source value, -s value                                 Source directory to parse (default: \".\")\n   --file value, -f value                                   File to save JSON output into\n   --verbose, -v                                            Enable verbose mode (a lot of logging) (default: false)\n   --skip-gitignore                                         Don't look into .gitignore for excludes (default: false)\n   --skip-errors                                            Suppress error as warning and skip badly formatted puzzles (default: false)\n   --rule value, -r value [ --rule value, -r value ]        Rule to apply (can be used many times). Possible values: 'max-estimate:\u003cint\u003e', 'min-estimate:\u003cint\u003e', 'min-words:\u003cint\u003e', 'available-roles:\u003cROLENAME\u003e,\u003cROLANME\u003e...'\n   --include value, -n value [ --include value, -n value ]  Glob pattern to include, e.g. \"**/*.jpg\"\n   --exclude value, -e value [ --exclude value, -e value ]  Glob pattern to exclude, e.g. \"**/*.jpg\"\n   --help, -h                                               show help\n```\n\n\nExample output:\n```json\n[\n  {\n    \"id\": \"209-c992021\",\n    \"ticket\": \"209\",\n    \"estimate\": 30,\n    \"role\": \"DEV\",\n    \"lines\": \"3-5\",\n    \"body\": \"whatever 1234. Please fix soon 1.\",\n    \"file\": \"resources/foobar.py\",\n    \"author\": \"monomonedula\",\n    \"email\": \"email@xxx.xyz\",\n    \"time\": \"2023-03-26T23:27:31+03:00\"\n  },\n  {\n    \"id\": \"321-b7bbd66\",\n    \"ticket\": \"321\",\n    \"estimate\": 60,\n    \"role\": \"DEV\",\n    \"lines\": \"9-11\",\n    \"body\": \"very important issue. Please fix soon 2.\",\n    \"file\": \"resources/foobar.py\",\n    \"author\": \"monomonedula\",\n    \"email\": \"email@xxx.xyz\",\n    \"time\": \"2023-03-26T23:27:31+03:00\"\n  }\n]\n```\n\nInstallation:\n```\ngo install -v github.com/monomonedula/gopdd/cmd/gopdd@latest\n```\n\nTested on MacOS and Linux.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonomonedula%2Fgopdd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmonomonedula%2Fgopdd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonomonedula%2Fgopdd/lists"}