{"id":20267397,"url":"https://github.com/slashsbin/styleguide-agile","last_synced_at":"2026-03-05T09:31:33.673Z","repository":{"id":69685727,"uuid":"61877443","full_name":"slashsbin/styleguide-agile","owner":"slashsbin","description":"/sBin/StyleGuide/Agile","archived":false,"fork":false,"pushed_at":"2024-04-18T06:25:34.000Z","size":6,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-03T22:13:30.640Z","etag":null,"topics":["agile","code-review","codereview","fibonacci-numbers","storypoint","style-guide","styleguide"],"latest_commit_sha":null,"homepage":"http://slashsbin.dev/styleguide-agile/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/slashsbin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2016-06-24T10:35:50.000Z","updated_at":"2024-04-18T06:25:38.000Z","dependencies_parsed_at":"2024-04-18T07:34:56.310Z","dependency_job_id":"c90ac148-e0e5-4459-b281-c938930b7166","html_url":"https://github.com/slashsbin/styleguide-agile","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/slashsbin/styleguide-agile","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slashsbin%2Fstyleguide-agile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slashsbin%2Fstyleguide-agile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slashsbin%2Fstyleguide-agile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slashsbin%2Fstyleguide-agile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/slashsbin","download_url":"https://codeload.github.com/slashsbin/styleguide-agile/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slashsbin%2Fstyleguide-agile/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30117681,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T08:19:04.902Z","status":"ssl_error","status_checked_at":"2026-03-05T08:17:37.148Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["agile","code-review","codereview","fibonacci-numbers","storypoint","style-guide","styleguide"],"created_at":"2024-11-14T12:14:32.014Z","updated_at":"2026-03-05T09:31:33.645Z","avatar_url":"https://github.com/slashsbin.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Agile\n\n## Story Points\n\n### Steps/Levels\n\nTen Levels:\n\n\u003e 1 \u003e 2 \u003e 3 \u003e 4 \u003e 5 \u003e 6 \u003e 7 \u003e 8 \u003e 9 \u003e 10\n\n### Fibonacci Numbers\n\n```\nF(n) = F(n-1) + F(n-2)\nSeed:\nF0 = 0\nF1 = 1\n```\n\nPoints are based on [Fibonacci Numbers](https://en.wikipedia.org/wiki/Fibonacci_number):\n\n\u003e 1 \u003e 3 \u003e 5 \u003e 8 \u003e 13 \u003e 21 \u003e 34 \u003e 55 \u003e 89 \u003e 144\n\n  - Numbers `1`, `2` were removed from Original Sequence:\n    - `F(2)`: Additional Number `1` were Removed due to Conflicting with 1st Step(Aka `F(1)`)\n    - `F(3)`: Number `2` were Removed due to Closeness to Siblings\n  - It's a [Complete Sequence](https://en.wikipedia.org/wiki/Complete_sequence) which means Points can be Merged Disgustingly to Construct New Points.\n  - Has Same Natural Meaning for Complexity Increase of Points for Tasks: Each subsequent number is the sum of the previous two, which Means every Task with Higher Point is Complex as Two Tasks with Previous Points!\n\n### Choose Points: How hard is to Implement a Task?\n\n* Included Factors:\n  1. *Complexity*\n  2. *Unknowns*\n  3. *Effort*\n\n* Non-Included Factors:\n  1. *Time*\n  2. *Assignee*\n\n### Ground Rules\n\n  - `F(6)`: Number `8` is the Common/Middle Point:\n    - Everyone in a [Cross-Functional](https://en.wikipedia.org/wiki/Cross-functional_team) Team can Do this!\n    - Other Tasks Points are Calculated Compared to this Point.\n\n* * *\n\n## Code Review\n\n### Checklist\n\n  - Code\n    - [ ] Does it Compile?\n    - [ ] Can you spot any runtime errors just by looking at code?\n    - [ ] Is the feature/bugfix complete?\n    - [ ] Is this a good solution?\n    - [ ] Does it introduce any security holes?\n    - [ ] Is the code efficent?\n    - [ ] Is it logically correct?\n    - [ ] How does it affect the rest of the system?\n    - [ ] Is it within scope?\n    - [ ] Are there any code style issues?\n    - [ ] Is the code readable?\n    - [ ] Does it have good and enough documentation?\n  - Automated testing\n    - [ ] Does it need tests?\n    - [ ] Does it have tests?\n    - [ ] Are tests logically correct?\n    - [ ] Are tests simple, easy to read and debug?\n    - [ ] Are tests testing the right thing?\n    - [ ] Are tests testing the edge cases?\n  - Manual testing\n    - [ ] Can you run the code?\n    - [ ] Can you follow through several test scenarios?\n    - [ ] Is the rest of the system looking/working fine?\n    - [ ] Can you break it?\n\n##### References\n  - https://ana-balica.github.io/2017/02/21/code-review-checklist/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslashsbin%2Fstyleguide-agile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslashsbin%2Fstyleguide-agile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslashsbin%2Fstyleguide-agile/lists"}