giton 0.1.2__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.
- giton-0.1.2/.gitignore +227 -0
- giton-0.1.2/.idea/.gitignore +5 -0
- giton-0.1.2/.idea/workspace.xml +268 -0
- giton-0.1.2/.koru/event-store.jsonl +10 -0
- giton-0.1.2/.koru/events/observability.jsonl +27 -0
- giton-0.1.2/.koru/history.jsonl +1 -0
- giton-0.1.2/.koru/onboarding.json +12 -0
- giton-0.1.2/.koru/project.json +8 -0
- giton-0.1.2/.planfile/.koru/autonomous-state.json +31 -0
- giton-0.1.2/.planfile/.koru/autonomy-telemetry.json +76 -0
- giton-0.1.2/.planfile/.koru/event-store.jsonl +3 -0
- giton-0.1.2/.planfile/.koru/nfo-events.jsonl +142 -0
- giton-0.1.2/.planfile/.koru/operator-steps/mcp_koru.ticket +1 -0
- giton-0.1.2/.planfile/.koru/operator-steps/self_control.ticket +1 -0
- giton-0.1.2/.planfile/.koru/queue-runner.lock +0 -0
- giton-0.1.2/.planfile/.koru/serve-endpoint.json +10 -0
- giton-0.1.2/.planfile/config.yaml +3 -0
- giton-0.1.2/.planfile/sprints/current.yaml +486 -0
- giton-0.1.2/.planfile/sprints/current.yaml.lock +0 -0
- giton-0.1.2/CHANGELOG.md +52 -0
- giton-0.1.2/LICENSE +201 -0
- giton-0.1.2/PKG-INFO +162 -0
- giton-0.1.2/README.md +143 -0
- giton-0.1.2/TODO.md +297 -0
- giton-0.1.2/VERSION +1 -0
- giton-0.1.2/goal.yaml +512 -0
- giton-0.1.2/koru.yaml +133 -0
- giton-0.1.2/pyproject.toml +62 -0
- giton-0.1.2/src/giton/__init__.py +3 -0
- giton-0.1.2/src/giton/__main__.py +4 -0
- giton-0.1.2/src/giton/catalog.py +173 -0
- giton-0.1.2/src/giton/cli.py +171 -0
- giton-0.1.2/src/giton/config.py +74 -0
- giton-0.1.2/src/giton/context.py +66 -0
- giton-0.1.2/src/giton/hooks.py +48 -0
- giton-0.1.2/src/giton/plugins.py +120 -0
- giton-0.1.2/src/giton/runner.py +85 -0
- giton-0.1.2/src/giton/shell.py +168 -0
- giton-0.1.2/tests/__init__.py +0 -0
- giton-0.1.2/tests/test_basic.py +85 -0
- giton-0.1.2/uv.lock +3212 -0
giton-0.1.2/.gitignore
ADDED
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
.idea/.name
|
|
3
|
+
.idea/giton.iml
|
|
4
|
+
.env.example
|
|
5
|
+
.idea/gix.iml
|
|
6
|
+
.idea/inspectionProfiles/Project_Default.xml
|
|
7
|
+
.idea/inspectionProfiles/profiles_settings.xml
|
|
8
|
+
.idea/modules.xml
|
|
9
|
+
.idea/pyProjectModel.xml
|
|
10
|
+
.idea/vcs.xml
|
|
11
|
+
__pycache__/
|
|
12
|
+
*.py[codz]
|
|
13
|
+
*$py.class
|
|
14
|
+
|
|
15
|
+
# C extensions
|
|
16
|
+
*.so
|
|
17
|
+
|
|
18
|
+
# Distribution / packaging
|
|
19
|
+
.Python
|
|
20
|
+
build/
|
|
21
|
+
develop-eggs/
|
|
22
|
+
dist/
|
|
23
|
+
downloads/
|
|
24
|
+
eggs/
|
|
25
|
+
.eggs/
|
|
26
|
+
lib/
|
|
27
|
+
lib64/
|
|
28
|
+
parts/
|
|
29
|
+
sdist/
|
|
30
|
+
var/
|
|
31
|
+
wheels/
|
|
32
|
+
share/python-wheels/
|
|
33
|
+
*.egg-info/
|
|
34
|
+
.installed.cfg
|
|
35
|
+
*.egg
|
|
36
|
+
MANIFEST
|
|
37
|
+
|
|
38
|
+
# PyInstaller
|
|
39
|
+
# Usually these files are written by a python script from a template
|
|
40
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
41
|
+
*.manifest
|
|
42
|
+
*.spec
|
|
43
|
+
|
|
44
|
+
# Installer logs
|
|
45
|
+
pip-log.txt
|
|
46
|
+
pip-delete-this-directory.txt
|
|
47
|
+
|
|
48
|
+
# Unit test / coverage reports
|
|
49
|
+
htmlcov/
|
|
50
|
+
.tox/
|
|
51
|
+
.nox/
|
|
52
|
+
.coverage
|
|
53
|
+
.coverage.*
|
|
54
|
+
.cache
|
|
55
|
+
nosetests.xml
|
|
56
|
+
coverage.xml
|
|
57
|
+
*.cover
|
|
58
|
+
*.py.cover
|
|
59
|
+
.hypothesis/
|
|
60
|
+
.pytest_cache/
|
|
61
|
+
cover/
|
|
62
|
+
|
|
63
|
+
# Translations
|
|
64
|
+
*.mo
|
|
65
|
+
*.pot
|
|
66
|
+
|
|
67
|
+
# Django stuff:
|
|
68
|
+
*.log
|
|
69
|
+
local_settings.py
|
|
70
|
+
db.sqlite3
|
|
71
|
+
db.sqlite3-journal
|
|
72
|
+
|
|
73
|
+
# Flask stuff:
|
|
74
|
+
instance/
|
|
75
|
+
.webassets-cache
|
|
76
|
+
|
|
77
|
+
# Scrapy stuff:
|
|
78
|
+
.scrapy
|
|
79
|
+
|
|
80
|
+
# Sphinx documentation
|
|
81
|
+
docs/_build/
|
|
82
|
+
|
|
83
|
+
# PyBuilder
|
|
84
|
+
.pybuilder/
|
|
85
|
+
target/
|
|
86
|
+
|
|
87
|
+
# Jupyter Notebook
|
|
88
|
+
.ipynb_checkpoints
|
|
89
|
+
|
|
90
|
+
# IPython
|
|
91
|
+
profile_default/
|
|
92
|
+
ipython_config.py
|
|
93
|
+
|
|
94
|
+
# pyenv
|
|
95
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
96
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
97
|
+
# .python-version
|
|
98
|
+
|
|
99
|
+
# pipenv
|
|
100
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
101
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
102
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
103
|
+
# install all needed dependencies.
|
|
104
|
+
# Pipfile.lock
|
|
105
|
+
|
|
106
|
+
# UV
|
|
107
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
108
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
109
|
+
# commonly ignored for libraries.
|
|
110
|
+
# uv.lock
|
|
111
|
+
|
|
112
|
+
# poetry
|
|
113
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
114
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
115
|
+
# commonly ignored for libraries.
|
|
116
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
117
|
+
# poetry.lock
|
|
118
|
+
# poetry.toml
|
|
119
|
+
|
|
120
|
+
# pdm
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
122
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
123
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
124
|
+
# pdm.lock
|
|
125
|
+
# pdm.toml
|
|
126
|
+
.pdm-python
|
|
127
|
+
.pdm-build/
|
|
128
|
+
|
|
129
|
+
# pixi
|
|
130
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
131
|
+
# pixi.lock
|
|
132
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
133
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
134
|
+
.pixi
|
|
135
|
+
|
|
136
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
137
|
+
__pypackages__/
|
|
138
|
+
|
|
139
|
+
# Celery stuff
|
|
140
|
+
celerybeat-schedule
|
|
141
|
+
celerybeat.pid
|
|
142
|
+
|
|
143
|
+
# Redis
|
|
144
|
+
*.rdb
|
|
145
|
+
*.aof
|
|
146
|
+
*.pid
|
|
147
|
+
|
|
148
|
+
# RabbitMQ
|
|
149
|
+
mnesia/
|
|
150
|
+
rabbitmq/
|
|
151
|
+
rabbitmq-data/
|
|
152
|
+
|
|
153
|
+
# ActiveMQ
|
|
154
|
+
activemq-data/
|
|
155
|
+
|
|
156
|
+
# SageMath parsed files
|
|
157
|
+
*.sage.py
|
|
158
|
+
|
|
159
|
+
# Environments
|
|
160
|
+
.env
|
|
161
|
+
.envrc
|
|
162
|
+
.venv
|
|
163
|
+
env/
|
|
164
|
+
venv/
|
|
165
|
+
ENV/
|
|
166
|
+
env.bak/
|
|
167
|
+
venv.bak/
|
|
168
|
+
|
|
169
|
+
# Spyder project settings
|
|
170
|
+
.spyderproject
|
|
171
|
+
.spyproject
|
|
172
|
+
|
|
173
|
+
# Rope project settings
|
|
174
|
+
.ropeproject
|
|
175
|
+
|
|
176
|
+
# mkdocs documentation
|
|
177
|
+
/site
|
|
178
|
+
|
|
179
|
+
# mypy
|
|
180
|
+
.mypy_cache/
|
|
181
|
+
.dmypy.json
|
|
182
|
+
dmypy.json
|
|
183
|
+
|
|
184
|
+
# Pyre type checker
|
|
185
|
+
.pyre/
|
|
186
|
+
|
|
187
|
+
# pytype static type analyzer
|
|
188
|
+
.pytype/
|
|
189
|
+
|
|
190
|
+
# Cython debug symbols
|
|
191
|
+
cython_debug/
|
|
192
|
+
|
|
193
|
+
# PyCharm
|
|
194
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
195
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
196
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
197
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
198
|
+
# .idea/
|
|
199
|
+
|
|
200
|
+
# Abstra
|
|
201
|
+
# Abstra is an AI-powered process automation framework.
|
|
202
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
203
|
+
# Learn more at https://abstra.io/docs
|
|
204
|
+
.abstra/
|
|
205
|
+
|
|
206
|
+
# Visual Studio Code
|
|
207
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
208
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
209
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
210
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
211
|
+
# .vscode/
|
|
212
|
+
# Temporary file for partial code execution
|
|
213
|
+
tempCodeRunnerFile.py
|
|
214
|
+
|
|
215
|
+
# Ruff stuff:
|
|
216
|
+
.ruff_cache/
|
|
217
|
+
|
|
218
|
+
# PyPI configuration file
|
|
219
|
+
.pypirc
|
|
220
|
+
|
|
221
|
+
# Marimo
|
|
222
|
+
marimo/_static/
|
|
223
|
+
marimo/_lsp/
|
|
224
|
+
__marimo__/
|
|
225
|
+
|
|
226
|
+
# Streamlit
|
|
227
|
+
.streamlit/secrets.toml
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="AutoImportSettings">
|
|
4
|
+
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ChangeListManager">
|
|
7
|
+
<list default="true" id="9532a670-1f01-4d5e-9501-f3491f105c64" name="Changes" comment="">
|
|
8
|
+
<change afterPath="$PROJECT_DIR$/.koru/event-store.jsonl" afterDir="false" />
|
|
9
|
+
<change afterPath="$PROJECT_DIR$/.koru/events/observability.jsonl" afterDir="false" />
|
|
10
|
+
<change afterPath="$PROJECT_DIR$/.koru/history.jsonl" afterDir="false" />
|
|
11
|
+
<change afterPath="$PROJECT_DIR$/.koru/onboarding.json" afterDir="false" />
|
|
12
|
+
<change afterPath="$PROJECT_DIR$/.koru/project.json" afterDir="false" />
|
|
13
|
+
<change afterPath="$PROJECT_DIR$/.planfile/.koru/autonomous-state.json" afterDir="false" />
|
|
14
|
+
<change afterPath="$PROJECT_DIR$/.planfile/.koru/autonomy-telemetry.json" afterDir="false" />
|
|
15
|
+
<change afterPath="$PROJECT_DIR$/.planfile/.koru/event-store.jsonl" afterDir="false" />
|
|
16
|
+
<change afterPath="$PROJECT_DIR$/.planfile/.koru/nfo-events.jsonl" afterDir="false" />
|
|
17
|
+
<change afterPath="$PROJECT_DIR$/.planfile/.koru/operator-steps/mcp_koru.ticket" afterDir="false" />
|
|
18
|
+
<change afterPath="$PROJECT_DIR$/.planfile/.koru/operator-steps/self_control.ticket" afterDir="false" />
|
|
19
|
+
<change afterPath="$PROJECT_DIR$/.planfile/.koru/queue-runner.lock" afterDir="false" />
|
|
20
|
+
<change afterPath="$PROJECT_DIR$/.planfile/.koru/serve-endpoint.json" afterDir="false" />
|
|
21
|
+
<change afterPath="$PROJECT_DIR$/.planfile/config.yaml" afterDir="false" />
|
|
22
|
+
<change afterPath="$PROJECT_DIR$/.planfile/sprints/current.yaml" afterDir="false" />
|
|
23
|
+
<change afterPath="$PROJECT_DIR$/.planfile/sprints/current.yaml.lock" afterDir="false" />
|
|
24
|
+
<change afterPath="$PROJECT_DIR$/koru.yaml" afterDir="false" />
|
|
25
|
+
<change beforePath="$PROJECT_DIR$/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/README.md" afterDir="false" />
|
|
26
|
+
<change beforePath="$PROJECT_DIR$/goal.yaml" beforeDir="false" afterPath="$PROJECT_DIR$/goal.yaml" afterDir="false" />
|
|
27
|
+
<change beforePath="$PROJECT_DIR$/pyproject.toml" beforeDir="false" afterPath="$PROJECT_DIR$/pyproject.toml" afterDir="false" />
|
|
28
|
+
<change beforePath="$PROJECT_DIR$/src/gix/cli.py" beforeDir="false" afterPath="$PROJECT_DIR$/src/gix/cli.py" afterDir="false" />
|
|
29
|
+
</list>
|
|
30
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
31
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
32
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
33
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
34
|
+
</component>
|
|
35
|
+
<component name="EmbeddingIndexingInfo">
|
|
36
|
+
<option name="cachedIndexableFilesCount" value="11" />
|
|
37
|
+
<option name="fileBasedEmbeddingIndicesEnabled" value="true" />
|
|
38
|
+
</component>
|
|
39
|
+
<component name="Git.Settings">
|
|
40
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
41
|
+
</component>
|
|
42
|
+
<component name="McpProjectServerCommands">
|
|
43
|
+
<commands />
|
|
44
|
+
<urls />
|
|
45
|
+
</component>
|
|
46
|
+
<component name="NextEditCompletionFeaturesState">
|
|
47
|
+
<decayedCancelled>
|
|
48
|
+
<entry key="MS100" value="1.3718424857785465" />
|
|
49
|
+
<entry key="MS500" value="3.3112573847521194" />
|
|
50
|
+
<entry key="S2" value="5.757179828705393" />
|
|
51
|
+
<entry key="S5" value="7.6841756824539456" />
|
|
52
|
+
<entry key="S10" value="8.699229618740706" />
|
|
53
|
+
<entry key="S30" value="9.717210745606021" />
|
|
54
|
+
<entry key="S60" value="11.113347666363076" />
|
|
55
|
+
<entry key="M2" value="13.75095879930024" />
|
|
56
|
+
<entry key="M5" value="17.495199423296118" />
|
|
57
|
+
<entry key="M10" value="19.469986695045137" />
|
|
58
|
+
<entry key="M15" value="20.244063435580596" />
|
|
59
|
+
<entry key="M30" value="21.085273253896926" />
|
|
60
|
+
<entry key="H1" value="21.53302338793371" />
|
|
61
|
+
<entry key="H2" value="21.76405315334236" />
|
|
62
|
+
<entry key="H4" value="21.881404889788154" />
|
|
63
|
+
<entry key="D1" value="21.98014719736049" />
|
|
64
|
+
<entry key="W1" value="21.997161747982677" />
|
|
65
|
+
</decayedCancelled>
|
|
66
|
+
<decayedSelected>
|
|
67
|
+
<entry key="MS100" value="0.0" />
|
|
68
|
+
<entry key="MS500" value="0.0" />
|
|
69
|
+
<entry key="S2" value="0.0" />
|
|
70
|
+
<entry key="S5" value="0.0" />
|
|
71
|
+
<entry key="S10" value="0.0" />
|
|
72
|
+
<entry key="S30" value="0.0" />
|
|
73
|
+
<entry key="S60" value="0.0" />
|
|
74
|
+
<entry key="M2" value="0.0" />
|
|
75
|
+
<entry key="M5" value="0.0" />
|
|
76
|
+
<entry key="M10" value="0.0" />
|
|
77
|
+
<entry key="M15" value="0.0" />
|
|
78
|
+
<entry key="M30" value="0.0" />
|
|
79
|
+
<entry key="H1" value="0.0" />
|
|
80
|
+
<entry key="H2" value="0.0" />
|
|
81
|
+
<entry key="H4" value="0.0" />
|
|
82
|
+
<entry key="D1" value="0.0" />
|
|
83
|
+
<entry key="W1" value="0.0" />
|
|
84
|
+
</decayedSelected>
|
|
85
|
+
<decayedShown>
|
|
86
|
+
<entry key="MS100" value="1.3130341694304903" />
|
|
87
|
+
<entry key="MS500" value="3.279711290013356" />
|
|
88
|
+
<entry key="S2" value="5.74254019350286" />
|
|
89
|
+
<entry key="S5" value="7.676080681885882" />
|
|
90
|
+
<entry key="S10" value="8.694587478942692" />
|
|
91
|
+
<entry key="S30" value="9.715431623419397" />
|
|
92
|
+
<entry key="S60" value="11.112211704324547" />
|
|
93
|
+
<entry key="M2" value="13.750130059214802" />
|
|
94
|
+
<entry key="M5" value="17.494711142555076" />
|
|
95
|
+
<entry key="M10" value="19.469700036990325" />
|
|
96
|
+
<entry key="M15" value="20.2438611107584" />
|
|
97
|
+
<entry key="M30" value="21.085165964837984" />
|
|
98
|
+
<entry key="H1" value="21.532968106864043" />
|
|
99
|
+
<entry key="H2" value="21.76402508981725" />
|
|
100
|
+
<entry key="H4" value="21.881390750497314" />
|
|
101
|
+
<entry key="D1" value="21.98014482572406" />
|
|
102
|
+
<entry key="W1" value="21.997161408805948" />
|
|
103
|
+
</decayedShown>
|
|
104
|
+
</component>
|
|
105
|
+
<component name="ProjectColorInfo"><![CDATA[{
|
|
106
|
+
"associatedIndex": 7,
|
|
107
|
+
"fromUser": false
|
|
108
|
+
}]]></component>
|
|
109
|
+
<component name="ProjectId" id="3EJfKRpCZISyXqeGwek7o89WO8p" />
|
|
110
|
+
<component name="ProjectViewState">
|
|
111
|
+
<option name="autoscrollFromSource" value="true" />
|
|
112
|
+
<option name="autoscrollToSource" value="true" />
|
|
113
|
+
<option name="hideEmptyMiddlePackages" value="true" />
|
|
114
|
+
<option name="showLibraryContents" value="true" />
|
|
115
|
+
</component>
|
|
116
|
+
<component name="PropertiesComponent"><![CDATA[{
|
|
117
|
+
"keyToString": {
|
|
118
|
+
"ASKED_SHARE_PROJECT_CONFIGURATION_FILES": "true",
|
|
119
|
+
"ModuleVcsDetector.initialDetectionPerformed": "true",
|
|
120
|
+
"RunOnceActivity.MCP Project settings loaded": "true",
|
|
121
|
+
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
122
|
+
"RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager.252": "true",
|
|
123
|
+
"RunOnceActivity.git.unshallow": "true",
|
|
124
|
+
"RunOnceActivity.typescript.service.memoryLimit.init": "true",
|
|
125
|
+
"codeWithMe.voiceChat.enabledByDefault": "false",
|
|
126
|
+
"git-widget-placeholder": "main",
|
|
127
|
+
"node.js.detected.package.eslint": "true",
|
|
128
|
+
"node.js.selected.package.eslint": "(autodetect)",
|
|
129
|
+
"nodejs_package_manager_path": "npm"
|
|
130
|
+
}
|
|
131
|
+
}]]></component>
|
|
132
|
+
<component name="RunManager">
|
|
133
|
+
<configuration default="true" type="PythonConfigurationType" factoryName="Python">
|
|
134
|
+
<module name="giton" />
|
|
135
|
+
<option name="ENV_FILES" value="" />
|
|
136
|
+
<option name="INTERPRETER_OPTIONS" value="" />
|
|
137
|
+
<option name="PARENT_ENVS" value="true" />
|
|
138
|
+
<envs>
|
|
139
|
+
<env name="PYTHONUNBUFFERED" value="1" />
|
|
140
|
+
</envs>
|
|
141
|
+
<option name="SDK_HOME" value="" />
|
|
142
|
+
<option name="WORKING_DIRECTORY" value="" />
|
|
143
|
+
<option name="IS_MODULE_SDK" value="false" />
|
|
144
|
+
<option name="ADD_CONTENT_ROOTS" value="true" />
|
|
145
|
+
<option name="ADD_SOURCE_ROOTS" value="true" />
|
|
146
|
+
<option name="DEBUG_JUST_MY_CODE" value="false" />
|
|
147
|
+
<option name="RUN_TOOL" value="" />
|
|
148
|
+
<option name="SCRIPT_NAME" value="" />
|
|
149
|
+
<option name="PARAMETERS" value="" />
|
|
150
|
+
<option name="SHOW_COMMAND_LINE" value="false" />
|
|
151
|
+
<option name="EMULATE_TERMINAL" value="false" />
|
|
152
|
+
<option name="MODULE_MODE" value="false" />
|
|
153
|
+
<option name="REDIRECT_INPUT" value="false" />
|
|
154
|
+
<option name="INPUT_FILE" value="" />
|
|
155
|
+
<method v="2" />
|
|
156
|
+
</configuration>
|
|
157
|
+
<configuration default="true" type="Tox" factoryName="Tox">
|
|
158
|
+
<module name="giton" />
|
|
159
|
+
<option name="ENV_FILES" value="" />
|
|
160
|
+
<option name="INTERPRETER_OPTIONS" value="" />
|
|
161
|
+
<option name="PARENT_ENVS" value="true" />
|
|
162
|
+
<option name="SDK_HOME" value="" />
|
|
163
|
+
<option name="WORKING_DIRECTORY" value="" />
|
|
164
|
+
<option name="IS_MODULE_SDK" value="false" />
|
|
165
|
+
<option name="ADD_CONTENT_ROOTS" value="true" />
|
|
166
|
+
<option name="ADD_SOURCE_ROOTS" value="true" />
|
|
167
|
+
<option name="DEBUG_JUST_MY_CODE" value="false" />
|
|
168
|
+
<option name="RUN_TOOL" value="" />
|
|
169
|
+
<method v="2" />
|
|
170
|
+
</configuration>
|
|
171
|
+
<configuration default="true" type="docs" factoryName="Docutils task">
|
|
172
|
+
<module name="giton" />
|
|
173
|
+
<option name="ENV_FILES" value="" />
|
|
174
|
+
<option name="INTERPRETER_OPTIONS" value="" />
|
|
175
|
+
<option name="PARENT_ENVS" value="true" />
|
|
176
|
+
<option name="SDK_HOME" value="" />
|
|
177
|
+
<option name="WORKING_DIRECTORY" value="" />
|
|
178
|
+
<option name="IS_MODULE_SDK" value="false" />
|
|
179
|
+
<option name="ADD_CONTENT_ROOTS" value="true" />
|
|
180
|
+
<option name="ADD_SOURCE_ROOTS" value="true" />
|
|
181
|
+
<option name="DEBUG_JUST_MY_CODE" value="false" />
|
|
182
|
+
<option name="RUN_TOOL" value="" />
|
|
183
|
+
<option name="docutils_input_file" value="" />
|
|
184
|
+
<option name="docutils_output_file" value="" />
|
|
185
|
+
<option name="docutils_params" value="" />
|
|
186
|
+
<option name="docutils_task" value="" />
|
|
187
|
+
<option name="docutils_open_in_browser" value="false" />
|
|
188
|
+
<method v="2" />
|
|
189
|
+
</configuration>
|
|
190
|
+
<configuration default="true" type="docs" factoryName="Sphinx task">
|
|
191
|
+
<module name="giton" />
|
|
192
|
+
<option name="ENV_FILES" value="" />
|
|
193
|
+
<option name="INTERPRETER_OPTIONS" value="" />
|
|
194
|
+
<option name="PARENT_ENVS" value="true" />
|
|
195
|
+
<option name="SDK_HOME" value="" />
|
|
196
|
+
<option name="WORKING_DIRECTORY" value="" />
|
|
197
|
+
<option name="IS_MODULE_SDK" value="false" />
|
|
198
|
+
<option name="ADD_CONTENT_ROOTS" value="true" />
|
|
199
|
+
<option name="ADD_SOURCE_ROOTS" value="true" />
|
|
200
|
+
<option name="DEBUG_JUST_MY_CODE" value="false" />
|
|
201
|
+
<option name="RUN_TOOL" value="" />
|
|
202
|
+
<option name="docutils_input_file" value="" />
|
|
203
|
+
<option name="docutils_output_file" value="" />
|
|
204
|
+
<option name="docutils_params" value="" />
|
|
205
|
+
<option name="docutils_task" value="" />
|
|
206
|
+
<option name="docutils_open_in_browser" value="false" />
|
|
207
|
+
<method v="2" />
|
|
208
|
+
</configuration>
|
|
209
|
+
<configuration default="true" type="tests" factoryName="Autodetect">
|
|
210
|
+
<module name="giton" />
|
|
211
|
+
<option name="ENV_FILES" value="" />
|
|
212
|
+
<option name="INTERPRETER_OPTIONS" value="" />
|
|
213
|
+
<option name="PARENT_ENVS" value="true" />
|
|
214
|
+
<option name="SDK_HOME" value="" />
|
|
215
|
+
<option name="WORKING_DIRECTORY" value="" />
|
|
216
|
+
<option name="IS_MODULE_SDK" value="false" />
|
|
217
|
+
<option name="ADD_CONTENT_ROOTS" value="true" />
|
|
218
|
+
<option name="ADD_SOURCE_ROOTS" value="true" />
|
|
219
|
+
<option name="DEBUG_JUST_MY_CODE" value="false" />
|
|
220
|
+
<option name="RUN_TOOL" value="" />
|
|
221
|
+
<option name="_new_additionalArguments" value="""" />
|
|
222
|
+
<option name="_new_target" value="""" />
|
|
223
|
+
<option name="_new_targetType" value=""PATH"" />
|
|
224
|
+
<method v="2" />
|
|
225
|
+
</configuration>
|
|
226
|
+
<configuration default="true" type="tests" factoryName="Doctests">
|
|
227
|
+
<module name="giton" />
|
|
228
|
+
<option name="ENV_FILES" value="" />
|
|
229
|
+
<option name="INTERPRETER_OPTIONS" value="" />
|
|
230
|
+
<option name="PARENT_ENVS" value="true" />
|
|
231
|
+
<option name="SDK_HOME" value="" />
|
|
232
|
+
<option name="WORKING_DIRECTORY" value="" />
|
|
233
|
+
<option name="IS_MODULE_SDK" value="false" />
|
|
234
|
+
<option name="ADD_CONTENT_ROOTS" value="true" />
|
|
235
|
+
<option name="ADD_SOURCE_ROOTS" value="true" />
|
|
236
|
+
<option name="DEBUG_JUST_MY_CODE" value="false" />
|
|
237
|
+
<option name="RUN_TOOL" value="" />
|
|
238
|
+
<option name="SCRIPT_NAME" value="" />
|
|
239
|
+
<option name="CLASS_NAME" value="" />
|
|
240
|
+
<option name="METHOD_NAME" value="" />
|
|
241
|
+
<option name="FOLDER_NAME" value="" />
|
|
242
|
+
<option name="TEST_TYPE" value="TEST_SCRIPT" />
|
|
243
|
+
<option name="PATTERN" value="" />
|
|
244
|
+
<option name="USE_PATTERN" value="false" />
|
|
245
|
+
<method v="2" />
|
|
246
|
+
</configuration>
|
|
247
|
+
</component>
|
|
248
|
+
<component name="SharedIndexes">
|
|
249
|
+
<attachedChunks>
|
|
250
|
+
<set>
|
|
251
|
+
<option value="bundled-python-sdk-c59985aa861c-c2ffad84badb-com.jetbrains.pycharm.pro.sharedIndexes.bundled-PY-261.24374.152" />
|
|
252
|
+
</set>
|
|
253
|
+
</attachedChunks>
|
|
254
|
+
</component>
|
|
255
|
+
<component name="TaskManager">
|
|
256
|
+
<task active="true" id="Default" summary="Default task">
|
|
257
|
+
<changelist id="9532a670-1f01-4d5e-9501-f3491f105c64" name="Changes" comment="" />
|
|
258
|
+
<created>1779901530223</created>
|
|
259
|
+
<option name="number" value="Default" />
|
|
260
|
+
<option name="presentableId" value="Default" />
|
|
261
|
+
<updated>1779901530223</updated>
|
|
262
|
+
</task>
|
|
263
|
+
<servers />
|
|
264
|
+
</component>
|
|
265
|
+
<component name="TypeScriptGeneratedFilesManager">
|
|
266
|
+
<option name="version" value="3" />
|
|
267
|
+
</component>
|
|
268
|
+
</project>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{"sequence": 1, "event_id": "ff297ebdabdc4109b15e039dfa88b25b", "context": "tasks", "event_type": "tasks.created", "occurred_at": "2026-05-27T17:14:45.956145Z", "payload": {"ticket_id": "PLF-001", "sprint": "current", "path": "/home/tom/github/semcod/gix/.planfile/sprints/current.yaml", "name": "Architektura: wprowad\u017a CQRS + Event Sourcing", "queue_name": "default", "priority": "high"}, "metadata": {}, "aggregate_id": "PLF-001"}
|
|
2
|
+
{"sequence": 2, "event_id": "cfdae2d1f6174b98ad87015b35c3cfcd", "context": "tasks", "event_type": "tasks.created", "occurred_at": "2026-05-27T17:14:52.153369Z", "payload": {"ticket_id": "PLF-002", "sprint": "current", "path": "/home/tom/github/semcod/gix/.planfile/sprints/current.yaml", "name": "[OPERATOR] MCP \u201ekoru\u201d w IDE: brak \u201ekoru\u201d w .cursor/mcp.json / .vscode/mcp.json \u2014 task koru:mcp:bootstrap, potem Reloa...", "queue_name": "operator", "priority": "high"}, "metadata": {}, "aggregate_id": "PLF-002"}
|
|
3
|
+
{"sequence": 3, "event_id": "40df64cff2204988bdff7752c9c4f6c5", "context": "tasks", "event_type": "tasks.created", "occurred_at": "2026-05-27T17:14:52.191269Z", "payload": {"ticket_id": "PLF-003", "sprint": "current", "path": "/home/tom/github/semcod/gix/.planfile/sprints/current.yaml", "name": "[OPERATOR] Koru self-control (paczka / VSIX / runtime): self-control auto-repair ran (pip_install_editable, install_p...", "queue_name": "operator", "priority": "high"}, "metadata": {}, "aggregate_id": "PLF-003"}
|
|
4
|
+
{"sequence": 4, "event_id": "eea749dd276d4527a6607b29e372030b", "context": "tasks", "event_type": "tasks.created", "occurred_at": "2026-05-27T17:14:56.393572Z", "payload": {"ticket_id": "PLF-004", "sprint": "current", "path": "/home/tom/github/semcod/gix/.planfile/sprints/current.yaml", "name": "Bootstrap regix on-change gate", "queue_name": "default", "priority": "normal"}, "metadata": {}, "aggregate_id": "PLF-004"}
|
|
5
|
+
{"sequence": 5, "event_id": "201fd54ee19243ac9be287eec57c473b", "context": "tasks", "event_type": "tasks.created", "occurred_at": "2026-05-27T17:14:56.429233Z", "payload": {"ticket_id": "PLF-005", "sprint": "current", "path": "/home/tom/github/semcod/gix/.planfile/sprints/current.yaml", "name": "Bootstrap testql on-change gate", "queue_name": "default", "priority": "normal"}, "metadata": {}, "aggregate_id": "PLF-005"}
|
|
6
|
+
{"sequence": 6, "event_id": "23785b466d94402aa2688c0d6dce8223", "context": "tasks", "event_type": "tasks.created", "occurred_at": "2026-05-27T17:14:56.470670Z", "payload": {"ticket_id": "PLF-006", "sprint": "current", "path": "/home/tom/github/semcod/gix/.planfile/sprints/current.yaml", "name": "Bootstrap wup on-change gate", "queue_name": "default", "priority": "normal"}, "metadata": {}, "aggregate_id": "PLF-006"}
|
|
7
|
+
{"sequence": 7, "event_id": "49400286dc5245c09dd5acf88e5bb592", "context": "tasks", "event_type": "tasks.created", "occurred_at": "2026-05-27T17:14:56.537813Z", "payload": {"ticket_id": "PLF-007", "sprint": "current", "path": "/home/tom/github/semcod/gix/.planfile/sprints/current.yaml", "name": "Gitignore `.planfile/.koru/` runtime directory", "queue_name": "default", "priority": "low"}, "metadata": {}, "aggregate_id": "PLF-007"}
|
|
8
|
+
{"sequence": 8, "event_id": "36db3cd7b0e9480a94ae758eebe14ea6", "context": "planfile_queue", "event_type": "planfile_queue.task_waiting", "occurred_at": "2026-05-27T17:14:57.157720Z", "payload": {"ticket_id": "PLF-001", "executor_kind": "human", "status": "waiting_input", "message": "Architektura: wprowad\u017a CQRS + Event Sourcing\n\nWprowad\u017a separacj\u0119 Command/Query oraz event-store dla gix. Pierwszy krok: zidentyfikuj 1-2 ograniczone konteksty (np. <module>), wydziel `commands/`, `queries/`, `events/`, dodaj event-bus."}, "metadata": {}, "aggregate_id": "PLF-001"}
|
|
9
|
+
{"sequence": 9, "event_id": "c202e401f070439e97f6ae7a9ff9b2cb", "context": "planfile_queue", "event_type": "planfile_queue.task_waiting", "occurred_at": "2026-05-27T17:15:33.475866Z", "payload": {"ticket_id": "PLF-001", "executor_kind": "human", "status": "waiting_input", "message": "Architektura: wprowad\u017a CQRS + Event Sourcing\n\nWprowad\u017a separacj\u0119 Command/Query oraz event-store dla gix. Pierwszy krok: zidentyfikuj 1-2 ograniczone konteksty (np. <module>), wydziel `commands/`, `queries/`, `events/`, dodaj event-bus."}, "metadata": {}, "aggregate_id": "PLF-001"}
|
|
10
|
+
{"sequence": 10, "event_id": "dbffba770a3f482ca3c2f03c1c891cb3", "context": "planfile_queue", "event_type": "planfile_queue.task_waiting", "occurred_at": "2026-05-27T17:16:35.326380Z", "payload": {"ticket_id": "PLF-001", "executor_kind": "human", "status": "waiting_input", "message": "Architektura: wprowad\u017a CQRS + Event Sourcing\n\nWprowad\u017a separacj\u0119 Command/Query oraz event-store dla gix. Pierwszy krok: zidentyfikuj 1-2 ograniczone konteksty (np. <module>), wydziel `commands/`, `queries/`, `events/`, dodaj event-bus."}, "metadata": {}, "aggregate_id": "PLF-001"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{"sequence": 1, "event_id": "680a983a2fca4be2bff22dae5f53d5a7", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:14:56.577165Z", "payload": {"corr": "process-24b5dab31d1f", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "/home/tom/github/semcod/planfile/.venv/bin/planfile", "args": {"argv": ["/home/tom/github/semcod/planfile/.venv/bin/planfile", "ticket", "list", "--status", "open", "--format", "json"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "planfile-runner"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "process-24b5dab31d1f"}
|
|
2
|
+
{"sequence": 2, "event_id": "ca7cbb142ab54f6c9402f621e653aee5", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:14:57.265214Z", "payload": {"corr": "process-24b603a779e9", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "planfile", "args": {"argv": ["planfile", "ticket", "show", "PLF-001", "--format", "json"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "planfile-runner"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "process-24b603a779e9"}
|
|
3
|
+
{"sequence": 3, "event_id": "f20fc8dd3c2c4a949e8860dfad3f3edf", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:01.473185Z", "payload": {"corr": "operator-action-PLF-001-none:show-decision-trace:api", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "api", "interface_id": "dashboard_rest", "transport": "http_json", "operation": "GET /api/autonomy/trace", "args": {"query": {}, "body": {}, "headers": {}}, "replayable": true, "authority": "medium", "verification": "http_status"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-none:show-decision-trace:api"}
|
|
4
|
+
{"sequence": 4, "event_id": "ea412b1e9d39454b92e2d277bc183d65", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:01.646791Z", "payload": {"corr": "operator-action-PLF-001-none:show-decision-trace:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "koru replay 'trace show-decisions --url=http://127.0.0.1:8765'"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-none:show-decision-trace:shell"}
|
|
5
|
+
{"sequence": 5, "event_id": "af105bd51c924e1e92b645946e47ff8a", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:01.705280Z", "payload": {"corr": "operator-action-PLF-001-none:show-interfaces:api", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "api", "interface_id": "dashboard_rest", "transport": "http_json", "operation": "GET /api/interfaces", "args": {"query": {}, "body": {}, "headers": {}}, "replayable": true, "authority": "medium", "verification": "http_status"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-none:show-interfaces:api"}
|
|
6
|
+
{"sequence": 6, "event_id": "294b57f60328465fa9e59a40e9d3053d", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:01.823520Z", "payload": {"corr": "operator-action-PLF-001-none:show-interfaces:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "koru replay 'trace show-interfaces --url=http://127.0.0.1:8765'"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-none:show-interfaces:shell"}
|
|
7
|
+
{"sequence": 7, "event_id": "9a2f61838f3e4bbe9755123b5efb7f2e", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:01.910513Z", "payload": {"corr": "operator-action-PLF-001-none:mark-ticket-input:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "koru replay 'ticket input PLF-001'"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-none:mark-ticket-input:shell"}
|
|
8
|
+
{"sequence": 8, "event_id": "2f842a3728ad40d593372efc20d9e07d", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:02.036791Z", "payload": {"corr": "operator-action-PLF-001-none:open-ticket:api", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "api", "interface_id": "dashboard_rest", "transport": "http_json", "operation": "GET /", "args": {"query": {"tab": "tickets", "project": "/home/tom/github/semcod/gix", "_fragment": "PLF-001"}, "body": {}, "headers": {}}, "replayable": true, "authority": "medium", "verification": "http_status"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-none:open-ticket:api"}
|
|
9
|
+
{"sequence": 9, "event_id": "dd5eafe864b7454e8988a89baa377bf9", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:02.108428Z", "payload": {"corr": "operator-action-PLF-001-none:open-ticket:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "koru replay 'ticket open PLF-001 --url='\"'\"'http://127.0.0.1:8765/?tab=tickets&project=%2Fhome%2Ftom%2Fgithub%2Fsemcod%2Fgix'\"'\"''"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-none:open-ticket:shell"}
|
|
10
|
+
{"sequence": 10, "event_id": "4374d0cb2bf64465b41afb1766e54164", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:33.052553Z", "payload": {"corr": "process-24be58c0015d", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "/home/tom/github/semcod/planfile/.venv/bin/planfile", "args": {"argv": ["/home/tom/github/semcod/planfile/.venv/bin/planfile", "ticket", "list", "--status", "open", "--format", "json"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "planfile-runner"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "process-24be58c0015d"}
|
|
11
|
+
{"sequence": 11, "event_id": "d044d608b0804cdba18853aacea2cd0b", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:33.589450Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:show-decision-trace:api", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "api", "interface_id": "dashboard_rest", "transport": "http_json", "operation": "GET /api/autonomy/trace", "args": {"query": {}, "body": {}, "headers": {}}, "replayable": true, "authority": "medium", "verification": "http_status"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:show-decision-trace:api"}
|
|
12
|
+
{"sequence": 12, "event_id": "ea365601f22b49dc8bf6c937db6ca681", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:33.592703Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:show-decision-trace:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "koru replay 'trace show-decisions --url=http://127.0.0.1:8765'"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:show-decision-trace:shell"}
|
|
13
|
+
{"sequence": 13, "event_id": "073aa04188ed4ed6a92f8f2b0fe1d4bc", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:33.594605Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:show-interfaces:api", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "api", "interface_id": "dashboard_rest", "transport": "http_json", "operation": "GET /api/interfaces", "args": {"query": {}, "body": {}, "headers": {}}, "replayable": true, "authority": "medium", "verification": "http_status"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:show-interfaces:api"}
|
|
14
|
+
{"sequence": 14, "event_id": "f0030e48103e47b29b19ad46be6a54e1", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:33.597706Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:show-interfaces:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "koru replay 'trace show-interfaces --url=http://127.0.0.1:8765'"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:show-interfaces:shell"}
|
|
15
|
+
{"sequence": 15, "event_id": "78128ce2871047eeab2766cf01ba32a1", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:33.601244Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:pause-autopilot-10m:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "touch .planfile/.koru/autopilot-pause-until-$(date +%s -d '+10 minutes')"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:pause-autopilot-10m:shell"}
|
|
16
|
+
{"sequence": 16, "event_id": "74eb5bfce4e54016a0f61e040a6a2095", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:33.603917Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:mark-ticket-input:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "koru replay 'ticket input PLF-001'"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:mark-ticket-input:shell"}
|
|
17
|
+
{"sequence": 17, "event_id": "ddfe5bf3001a48b68a075e430fb0ad66", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:33.605902Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:open-ticket:api", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "api", "interface_id": "dashboard_rest", "transport": "http_json", "operation": "GET /", "args": {"query": {"tab": "tickets", "project": "/home/tom/github/semcod/gix", "_fragment": "PLF-001"}, "body": {}, "headers": {}}, "replayable": true, "authority": "medium", "verification": "http_status"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:open-ticket:api"}
|
|
18
|
+
{"sequence": 18, "event_id": "058ebfc7b4134d5c9673c76a2fa5a049", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:15:33.608821Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:open-ticket:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "koru replay 'ticket open PLF-001 --url='\"'\"'http://127.0.0.1:8765/?tab=tickets&project=%2Fhome%2Ftom%2Fgithub%2Fsemcod%2Fgix'\"'\"''"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:open-ticket:shell"}
|
|
19
|
+
{"sequence": 19, "event_id": "d919544b97054add9288311e3c609e78", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:16:34.742716Z", "payload": {"corr": "process-24ccb5280b69", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "/home/tom/github/semcod/planfile/.venv/bin/planfile", "args": {"argv": ["/home/tom/github/semcod/planfile/.venv/bin/planfile", "ticket", "list", "--status", "open", "--format", "json"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "planfile-runner"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "process-24ccb5280b69"}
|
|
20
|
+
{"sequence": 20, "event_id": "25c68023cefc4a8b9eaa51c6f06e9954", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:16:35.449866Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:show-decision-trace:api", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "api", "interface_id": "dashboard_rest", "transport": "http_json", "operation": "GET /api/autonomy/trace", "args": {"query": {}, "body": {}, "headers": {}}, "replayable": true, "authority": "medium", "verification": "http_status"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:show-decision-trace:api"}
|
|
21
|
+
{"sequence": 21, "event_id": "933de1a63f5c4600a78bf779972d1881", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:16:35.453809Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:show-decision-trace:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "koru replay 'trace show-decisions --url=http://127.0.0.1:8765'"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:show-decision-trace:shell"}
|
|
22
|
+
{"sequence": 22, "event_id": "7687c34d47a041e79105033ddf2c57a4", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:16:35.456811Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:show-interfaces:api", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "api", "interface_id": "dashboard_rest", "transport": "http_json", "operation": "GET /api/interfaces", "args": {"query": {}, "body": {}, "headers": {}}, "replayable": true, "authority": "medium", "verification": "http_status"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:show-interfaces:api"}
|
|
23
|
+
{"sequence": 23, "event_id": "1ca853fd19f34c2a8cbbb404d84e56ff", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:16:35.459448Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:show-interfaces:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "koru replay 'trace show-interfaces --url=http://127.0.0.1:8765'"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:show-interfaces:shell"}
|
|
24
|
+
{"sequence": 24, "event_id": "b81383063d914d079c9da90fd2b00d97", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:16:35.461715Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:pause-autopilot-10m:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "touch .planfile/.koru/autopilot-pause-until-$(date +%s -d '+10 minutes')"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:pause-autopilot-10m:shell"}
|
|
25
|
+
{"sequence": 25, "event_id": "e4ff07aea0024e299e63089e8b75a8c8", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:16:35.468074Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:mark-ticket-input:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "koru replay 'ticket input PLF-001'"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:mark-ticket-input:shell"}
|
|
26
|
+
{"sequence": 26, "event_id": "4a4b65c56c6d4be28e7b302e4f5556f5", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:16:35.470775Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:open-ticket:api", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "api", "interface_id": "dashboard_rest", "transport": "http_json", "operation": "GET /", "args": {"query": {"tab": "tickets", "project": "/home/tom/github/semcod/gix", "_fragment": "PLF-001"}, "body": {}, "headers": {}}, "replayable": true, "authority": "medium", "verification": "http_status"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:open-ticket:api"}
|
|
27
|
+
{"sequence": 27, "event_id": "1837c13156b34888956c07baebbba204", "context": "observability", "event_type": "control.command", "occurred_at": "2026-05-27T17:16:35.475599Z", "payload": {"corr": "operator-action-PLF-001-chat_activity:open-ticket:shell", "component": "control", "kind": "control.command", "data": {"command_version": "koru.control.v1", "surface": "shell_cli", "interface_id": "subprocess_local_tools", "transport": "subprocess", "operation": "bash", "args": {"argv": ["bash", "-lc", "koru replay 'ticket open PLF-001 --url='\"'\"'http://127.0.0.1:8765/?tab=tickets&project=%2Fhome%2Ftom%2Fgithub%2Fsemcod%2Fgix'\"'\"''"], "cwd": "/home/tom/github/semcod/gix"}, "replayable": true, "authority": "high", "verification": "exit_code_and_output"}, "actor": "autonomy-next"}, "metadata": {"dsl_version": "koru.obs.v1"}, "aggregate_id": "operator-action-PLF-001-chat_activity:open-ticket:shell"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"event": "onboarding.completed", "selected_ide": "jetbrains", "strategy_path": ["architecture", "cqrs_es"], "ticket_id": "PLF-001", "timestamp": "2026-05-27T17:14:45.956998+00:00"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"created_ticket_id": "PLF-001",
|
|
3
|
+
"created_ticket_title": "Architektura: wprowadź CQRS + Event Sourcing",
|
|
4
|
+
"project": "/home/tom/github/semcod/gix",
|
|
5
|
+
"schema": "koru.onboarding/v1",
|
|
6
|
+
"selected_ide": "jetbrains",
|
|
7
|
+
"strategy_path": [
|
|
8
|
+
"architecture",
|
|
9
|
+
"cqrs_es"
|
|
10
|
+
],
|
|
11
|
+
"updated_at": "2026-05-27T17:14:45.956788+00:00"
|
|
12
|
+
}
|