gitglimpse 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,215 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ #uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ #poetry.lock
109
+ #poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ #pdm.lock
116
+ #pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ #pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # SageMath parsed files
135
+ *.sage.py
136
+
137
+ # Environments
138
+ .env
139
+ .envrc
140
+ .venv
141
+ env/
142
+ venv/
143
+ ENV/
144
+ env.bak/
145
+ venv.bak/
146
+
147
+ # Spyder project settings
148
+ .spyderproject
149
+ .spyproject
150
+
151
+ # Rope project settings
152
+ .ropeproject
153
+
154
+ # mkdocs documentation
155
+ /site
156
+
157
+ # mypy
158
+ .mypy_cache/
159
+ .dmypy.json
160
+ dmypy.json
161
+
162
+ # Pyre type checker
163
+ .pyre/
164
+
165
+ # pytype static type analyzer
166
+ .pytype/
167
+
168
+ # Cython debug symbols
169
+ cython_debug/
170
+
171
+ # PyCharm
172
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
173
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
174
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
175
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
176
+ .idea/
177
+ *.iml
178
+
179
+ # Abstra
180
+ # Abstra is an AI-powered process automation framework.
181
+ # Ignore directories containing user credentials, local state, and settings.
182
+ # Learn more at https://abstra.io/docs
183
+ .abstra/
184
+
185
+ # Visual Studio Code
186
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
187
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
188
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
189
+ # you could uncomment the following to ignore the entire vscode folder
190
+ # .vscode/
191
+
192
+ # Ruff stuff:
193
+ .ruff_cache/
194
+
195
+ # PyPI configuration file
196
+ .pypirc
197
+
198
+ # Cursor
199
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
200
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
201
+ # refer to https://docs.cursor.com/context/ignore-files
202
+ .cursorignore
203
+ .cursorindexingignore
204
+
205
+ # Marimo
206
+ marimo/_static/
207
+ marimo/_lsp/
208
+ __marimo__/
209
+
210
+ # macOS
211
+ .DS_Store
212
+
213
+ # Build
214
+ *.pyc
215
+ .venv/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 dinooo06
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: gitglimpse
3
+ Version: 0.1.0
4
+ Summary: Analyze git history and generate standup updates, daily reports, and weekly summaries.
5
+ Project-URL: Homepage, https://github.com/dino/gitglimpse
6
+ Project-URL: Repository, https://github.com/dino/gitglimpse
7
+ Project-URL: Bug Tracker, https://github.com/dino/gitglimpse/issues
8
+ Author: Dino
9
+ License: MIT
10
+ License-File: LICENSE
11
+ Keywords: cli,developer-tools,git,standup
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Requires-Python: >=3.11
17
+ Requires-Dist: inquirerpy>=0.3.4
18
+ Requires-Dist: platformdirs>=4.0
19
+ Requires-Dist: rich>=13.0
20
+ Requires-Dist: tomli-w>=1.2
21
+ Requires-Dist: typer[all]>=0.9.0
22
+ Provides-Extra: llm
23
+ Requires-Dist: httpx>=0.27; extra == 'llm'
@@ -0,0 +1,45 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "gitglimpse"
7
+ version = "0.1.0"
8
+ description = "Analyze git history and generate standup updates, daily reports, and weekly summaries."
9
+ authors = [{ name = "Dino" }]
10
+ license = { text = "MIT" }
11
+ requires-python = ">=3.11"
12
+ keywords = ["git", "standup", "developer-tools", "cli"]
13
+ classifiers = [
14
+ "License :: OSI Approved :: MIT License",
15
+ "Programming Language :: Python :: 3.11",
16
+ "Programming Language :: Python :: 3.12",
17
+ "Programming Language :: Python :: 3.13",
18
+ ]
19
+ dependencies = [
20
+ "typer[all]>=0.9.0",
21
+ "rich>=13.0",
22
+ "platformdirs>=4.0",
23
+ "tomli_w>=1.2",
24
+ "InquirerPy>=0.3.4",
25
+ ]
26
+
27
+ [project.urls]
28
+ Homepage = "https://github.com/dino/gitglimpse"
29
+ Repository = "https://github.com/dino/gitglimpse"
30
+ "Bug Tracker" = "https://github.com/dino/gitglimpse/issues"
31
+
32
+ [project.optional-dependencies]
33
+ llm = ["httpx>=0.27"]
34
+
35
+ [project.scripts]
36
+ glimpse = "gitglimpse.cli:app"
37
+
38
+ [tool.hatch.build.targets.wheel]
39
+ packages = ["src/gitglimpse"]
40
+
41
+ [tool.hatch.build.targets.wheel.shared-data]
42
+ # Ensures .md templates are included in the wheel alongside Python files.
43
+
44
+ [tool.hatch.build.targets.sdist]
45
+ include = ["src/gitglimpse/commands/*.md"]
@@ -0,0 +1,33 @@
1
+ Generate a detailed daily report from your git commits.
2
+
3
+ Run the following shell command and capture its output:
4
+
5
+ ```
6
+ glimpse standup --json
7
+ ```
8
+
9
+ Then format the JSON result into a **Markdown daily report** using this structure:
10
+
11
+ ```markdown
12
+ # Daily Report — [date formatted as "Month D, YYYY"]
13
+
14
+ [For each entry in the "days" array:]
15
+ ## [entry "label"] — [entry "date"]
16
+
17
+ [For each task in the day's "tasks" array:]
18
+ ### [branch or "general"] — [commits] commit(s), ~[estimated_minutes/60 rounded]h
19
+
20
+ **Changes:** +[insertions] −[deletions]
21
+
22
+ [Plain-English description of what was accomplished, derived from the task summary
23
+ and commit_messages. 2–4 sentences max. Professional but direct.]
24
+ ```
25
+
26
+ Rules:
27
+ - Iterate the "days" array in order. Each day becomes a level-2 section.
28
+ - One level-3 section per task within each day.
29
+ - Derive the description from "summary" and "commit_messages" — do not invent work.
30
+ - If insertions + deletions > 200, note it was a substantial change set.
31
+ - Do NOT add a section with plans or next steps. Only report completed work.
32
+ - If the "days" array is empty, write "No commits found for this period."
33
+ - Use standard Markdown; no HTML.
@@ -0,0 +1,30 @@
1
+ Generate a standup update from your recent git commits.
2
+
3
+ Run the following shell command and capture its output:
4
+
5
+ ```
6
+ glimpse standup --json
7
+ ```
8
+
9
+ Then format the JSON result into a clean standup update using **exactly** this structure:
10
+
11
+ ```
12
+ Standup — [date from JSON "date" field, formatted as "Month D, YYYY"]
13
+
14
+ [For each entry in the "days" array:]
15
+ [entry "label"]:
16
+ - [task "summary"] ([task "branch" if non-empty], ~[estimated_minutes / 60 rounded to 1 decimal]h)
17
+
18
+ Total estimated time: [total_estimated_hours]h
19
+ ```
20
+
21
+ Rules:
22
+ - Iterate the "days" array in order. Each day becomes its own section using the "label" field as the header (e.g. "Yesterday:", "Friday:", "Today:").
23
+ - One bullet per task in each day's "tasks" array.
24
+ - If a task has an empty "branch" field, omit the branch from the parenthetical.
25
+ - If a task includes a "diff_snippet" field, use it to write a more accurate description of what was changed.
26
+ - Do NOT add a "Today:" section with plans or next steps. Only show completed work from the data.
27
+ - Do NOT invent tasks or work items that are not present in the JSON data.
28
+ - Keep each bullet under 100 characters.
29
+ - Use developer language: concise and direct.
30
+ - If the "days" array is empty, write "(no commits found)".
@@ -0,0 +1,35 @@
1
+ Generate a weekly summary of your git activity.
2
+
3
+ Run the following shell command and capture its output:
4
+
5
+ ```
6
+ glimpse week --json
7
+ ```
8
+
9
+ Then format the JSON result into a **weekly summary** using this structure:
10
+
11
+ ```
12
+ Weekly Summary — [period.start to period.end, formatted as "Month D–D, YYYY" or "Month D – Month D, YYYY"]
13
+
14
+ [For each entry in the "days" array that has tasks:]
15
+ [day_name] ([date formatted as "Month D"]):
16
+ - [task summary] (~[total_hours for task]h)
17
+ Day total: [total_hours]h
18
+
19
+ Key themes:
20
+ - [3–5 bullet points identifying the main areas of work across the whole week,
21
+ inferred from task summaries and commit_messages]
22
+
23
+ Highlights:
24
+ - [1–3 notable accomplishments — largest change sets, most complex features, etc.]
25
+
26
+ Week total: [week_total_hours]h across [total_tasks] tasks
27
+ ```
28
+
29
+ Rules:
30
+ - Only include days that appear in the "days" array (skip days with no commits).
31
+ - Key themes and Highlights must be inferred from the actual data — do not invent.
32
+ - Do NOT add a section with plans or next steps. Only summarize completed work.
33
+ - Keep each theme/highlight bullet under 100 characters.
34
+ - If the days array is empty, write "(no commits found this week)".
35
+ - Use developer language: concise and direct.