Initial commit, 90% there
This commit is contained in:
102
.bash_history
Normal file
102
.bash_history
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
cd
|
||||||
|
node-red start
|
||||||
|
ip a
|
||||||
|
sudo apt install curl && htop
|
||||||
|
sudo apt install htop
|
||||||
|
bash <(curl -sL https://github.com/node-red/linux-installers/releases/latest/download/update-nodejs-and-nodered-deb)
|
||||||
|
node-red star
|
||||||
|
sftp mdares@10.147.20.185
|
||||||
|
cd /home/mdares/
|
||||||
|
ls
|
||||||
|
node-red start
|
||||||
|
cd /home/mdares/
|
||||||
|
ls
|
||||||
|
cd /home/mdares/.node-red
|
||||||
|
mv /home/mdares/flows.json
|
||||||
|
mv /home/mdares/flows.json .
|
||||||
|
mv /home/mdares/flows_cred .
|
||||||
|
mv /home/mdares/flows_cred.json .
|
||||||
|
mv /home/mdares/globals-reference.md .
|
||||||
|
mv /home/mdares/mold_presets_migration.sql .
|
||||||
|
mv /home/mdares/optimization_prompt.txt .
|
||||||
|
mv /home/mdares/package.json .
|
||||||
|
mv /home/mdares/package-lock.json .
|
||||||
|
mv /home/mdares/phase1_database_migration.sql .
|
||||||
|
mv /home/mdares/phase1_machine_cycles_function.js .
|
||||||
|
mv /home/mdares/settings.js .
|
||||||
|
cd ~
|
||||||
|
ip a
|
||||||
|
sudo service NetworkManager restart
|
||||||
|
nmcli device status
|
||||||
|
nmcli device wifi connect "Dares_Network" password "plis2012$%"
|
||||||
|
ip a
|
||||||
|
exit
|
||||||
|
ip a
|
||||||
|
ping google.com
|
||||||
|
ipconfig
|
||||||
|
ifconfig
|
||||||
|
ip config
|
||||||
|
ipconfig
|
||||||
|
npm install node-red-dashboard
|
||||||
|
npm remove node-red-dashboard
|
||||||
|
rm -rf ~/.node-red/node_modules/node-red-dashboard*
|
||||||
|
rm -rf ~/.node-red/node_modules/@node-red/dashboard*
|
||||||
|
npm install node-red-dashboard
|
||||||
|
npm audit fix
|
||||||
|
node-red-log
|
||||||
|
node-red-stop
|
||||||
|
npm remove node-red-contrib-ui_j
|
||||||
|
rm ~/.node-red/.config.nodes.json
|
||||||
|
node-red-start
|
||||||
|
node-red-stop
|
||||||
|
exit
|
||||||
|
npm install node-red-contrib-xlsx-to-json
|
||||||
|
cd /home/mdares/.node-red/
|
||||||
|
node-red-stop
|
||||||
|
node-red-start
|
||||||
|
node-red-stop
|
||||||
|
node-red-start
|
||||||
|
node-red-stop
|
||||||
|
npm remove node-red-dashboard
|
||||||
|
npm install node-red-dashboard
|
||||||
|
node-red-start
|
||||||
|
curl -fsSL https://claude.ai/install.sh | bash
|
||||||
|
claude
|
||||||
|
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc && source ~/.bashrc
|
||||||
|
claude
|
||||||
|
node-red start
|
||||||
|
node-red-stop
|
||||||
|
cd /home/mdares/.node-red/.config.runtime.json
|
||||||
|
cat /home/mdares/.node-red/.config.runtime.json
|
||||||
|
nano
|
||||||
|
cd /home/mdares/.node-red/
|
||||||
|
nano settings.js
|
||||||
|
node-red-start
|
||||||
|
nano settings.js
|
||||||
|
node-red-start
|
||||||
|
node-red-stop
|
||||||
|
node-red-start
|
||||||
|
node-red-stop
|
||||||
|
rm /home/mdares/flows_cred.json
|
||||||
|
cd ~
|
||||||
|
rm /home/mdares/.node-red/flows_cred.json
|
||||||
|
node-red-stop
|
||||||
|
node-red-start
|
||||||
|
claude
|
||||||
|
fg
|
||||||
|
exit
|
||||||
|
exit
|
||||||
|
node-red-stop
|
||||||
|
node-red-start
|
||||||
|
exit
|
||||||
|
claude
|
||||||
|
node-red-stop
|
||||||
|
node-red-start
|
||||||
|
node-red-log
|
||||||
|
node-red-stop
|
||||||
|
node-red-start
|
||||||
|
sudo apt install htop
|
||||||
|
htop
|
||||||
|
claude
|
||||||
|
sudo systemctl restart nodered.service
|
||||||
|
sudo systemctl restart nodered.service
|
||||||
7
.bash_logout
Normal file
7
.bash_logout
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# ~/.bash_logout: executed by bash(1) when login shell exits.
|
||||||
|
|
||||||
|
# when leaving the console clear the screen to increase privacy
|
||||||
|
|
||||||
|
if [ "$SHLVL" = 1 ]; then
|
||||||
|
[ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
|
||||||
|
fi
|
||||||
118
.bashrc
Normal file
118
.bashrc
Normal file
@@ -0,0 +1,118 @@
|
|||||||
|
# ~/.bashrc: executed by bash(1) for non-login shells.
|
||||||
|
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
|
||||||
|
# for examples
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
case $- in
|
||||||
|
*i*) ;;
|
||||||
|
*) return;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# don't put duplicate lines or lines starting with space in the history.
|
||||||
|
# See bash(1) for more options
|
||||||
|
HISTCONTROL=ignoreboth
|
||||||
|
|
||||||
|
# append to the history file, don't overwrite it
|
||||||
|
shopt -s histappend
|
||||||
|
|
||||||
|
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
|
||||||
|
HISTSIZE=1000
|
||||||
|
HISTFILESIZE=2000
|
||||||
|
|
||||||
|
# check the window size after each command and, if necessary,
|
||||||
|
# update the values of LINES and COLUMNS.
|
||||||
|
shopt -s checkwinsize
|
||||||
|
|
||||||
|
# If set, the pattern "**" used in a pathname expansion context will
|
||||||
|
# match all files and zero or more directories and subdirectories.
|
||||||
|
#shopt -s globstar
|
||||||
|
|
||||||
|
# make less more friendly for non-text input files, see lesspipe(1)
|
||||||
|
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
||||||
|
|
||||||
|
# set variable identifying the chroot you work in (used in the prompt below)
|
||||||
|
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
|
||||||
|
debian_chroot=$(cat /etc/debian_chroot)
|
||||||
|
fi
|
||||||
|
|
||||||
|
# set a fancy prompt (non-color, unless we know we "want" color)
|
||||||
|
case "$TERM" in
|
||||||
|
xterm-color|*-256color) color_prompt=yes;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# uncomment for a colored prompt, if the terminal has the capability; turned
|
||||||
|
# off by default to not distract the user: the focus in a terminal window
|
||||||
|
# should be on the output of commands, not on the prompt
|
||||||
|
#force_color_prompt=yes
|
||||||
|
|
||||||
|
if [ -n "$force_color_prompt" ]; then
|
||||||
|
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
|
||||||
|
# We have color support; assume it's compliant with Ecma-48
|
||||||
|
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
|
||||||
|
# a case would tend to support setf rather than setaf.)
|
||||||
|
color_prompt=yes
|
||||||
|
else
|
||||||
|
color_prompt=
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$color_prompt" = yes ]; then
|
||||||
|
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
|
||||||
|
else
|
||||||
|
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
|
||||||
|
fi
|
||||||
|
unset color_prompt force_color_prompt
|
||||||
|
|
||||||
|
# If this is an xterm set the title to user@host:dir
|
||||||
|
case "$TERM" in
|
||||||
|
xterm*|rxvt*)
|
||||||
|
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# enable color support of ls and also add handy aliases
|
||||||
|
if [ -x /usr/bin/dircolors ]; then
|
||||||
|
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
||||||
|
alias ls='ls --color=auto'
|
||||||
|
#alias dir='dir --color=auto'
|
||||||
|
#alias vdir='vdir --color=auto'
|
||||||
|
|
||||||
|
alias grep='grep --color=auto'
|
||||||
|
alias fgrep='fgrep --color=auto'
|
||||||
|
alias egrep='egrep --color=auto'
|
||||||
|
fi
|
||||||
|
|
||||||
|
# colored GCC warnings and errors
|
||||||
|
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
|
||||||
|
|
||||||
|
# some more ls aliases
|
||||||
|
alias ll='ls -alF'
|
||||||
|
alias la='ls -A'
|
||||||
|
alias l='ls -CF'
|
||||||
|
|
||||||
|
# Add an "alert" alias for long running commands. Use like so:
|
||||||
|
# sleep 10; alert
|
||||||
|
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
|
||||||
|
|
||||||
|
# Alias definitions.
|
||||||
|
# You may want to put all your additions into a separate file like
|
||||||
|
# ~/.bash_aliases, instead of adding them here directly.
|
||||||
|
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
|
||||||
|
|
||||||
|
if [ -f ~/.bash_aliases ]; then
|
||||||
|
. ~/.bash_aliases
|
||||||
|
fi
|
||||||
|
|
||||||
|
# enable programmable completion features (you don't need to enable
|
||||||
|
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
||||||
|
# sources /etc/bash.bashrc).
|
||||||
|
if ! shopt -oq posix; then
|
||||||
|
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||||
|
. /usr/share/bash-completion/bash_completion
|
||||||
|
elif [ -f /etc/bash_completion ]; then
|
||||||
|
. /etc/bash_completion
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
1
.cache/Microsoft/DeveloperTools/deviceid
Normal file
1
.cache/Microsoft/DeveloperTools/deviceid
Normal file
@@ -0,0 +1 @@
|
|||||||
|
b2f7320f-f4e9-4555-84f6-486d90c74dc3
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"debug": "Starting connection with timeout of 30000ms",
|
||||||
|
"timestamp": "2025-11-21T18:13:34.058Z",
|
||||||
|
"sessionId": "beec548e-6147-4ec4-ae8e-508d96fdf994",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Successfully connected to ws-ide server in 37ms",
|
||||||
|
"timestamp": "2025-11-21T18:13:34.088Z",
|
||||||
|
"sessionId": "beec548e-6147-4ec4-ae8e-508d96fdf994",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Connection established with capabilities: {\"hasTools\":true,\"hasPrompts\":false,\"hasResources\":false,\"serverVersion\":{\"name\":\"Claude Code VSCode MCP\",\"version\":\"2.0.49\"}}",
|
||||||
|
"timestamp": "2025-11-21T18:13:34.088Z",
|
||||||
|
"sessionId": "beec548e-6147-4ec4-ae8e-508d96fdf994",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: openDiff",
|
||||||
|
"timestamp": "2025-11-21T18:14:33.096Z",
|
||||||
|
"sessionId": "beec548e-6147-4ec4-ae8e-508d96fdf994",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: close_tab",
|
||||||
|
"timestamp": "2025-11-21T18:14:34.103Z",
|
||||||
|
"sessionId": "beec548e-6147-4ec4-ae8e-508d96fdf994",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: close_tab",
|
||||||
|
"timestamp": "2025-11-21T18:14:34.114Z",
|
||||||
|
"sessionId": "beec548e-6147-4ec4-ae8e-508d96fdf994",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'close_tab' completed successfully in 3s",
|
||||||
|
"timestamp": "2025-11-21T18:14:37.691Z",
|
||||||
|
"sessionId": "beec548e-6147-4ec4-ae8e-508d96fdf994",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'close_tab' completed successfully in 3s",
|
||||||
|
"timestamp": "2025-11-21T18:14:37.756Z",
|
||||||
|
"sessionId": "beec548e-6147-4ec4-ae8e-508d96fdf994",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'openDiff' completed successfully in 4s",
|
||||||
|
"timestamp": "2025-11-21T18:14:37.774Z",
|
||||||
|
"sessionId": "beec548e-6147-4ec4-ae8e-508d96fdf994",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
}
|
||||||
|
]
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,914 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"debug": "Starting connection with timeout of 30000ms",
|
||||||
|
"timestamp": "2025-11-23T22:19:44.147Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Successfully connected to ws-ide server in 2360ms",
|
||||||
|
"timestamp": "2025-11-23T22:19:46.430Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Connection established with capabilities: {\"hasTools\":true,\"hasPrompts\":false,\"hasResources\":false,\"serverVersion\":{\"name\":\"Claude Code VSCode MCP\",\"version\":\"2.0.49\"}}",
|
||||||
|
"timestamp": "2025-11-23T22:19:46.431Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: closeAllDiffTabs",
|
||||||
|
"timestamp": "2025-11-23T22:28:59.386Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'closeAllDiffTabs' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T22:29:00.745Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:29:33.835Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 412ms",
|
||||||
|
"timestamp": "2025-11-23T22:29:34.240Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:29:48.490Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 312ms",
|
||||||
|
"timestamp": "2025-11-23T22:29:48.802Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:30:12.408Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 252ms",
|
||||||
|
"timestamp": "2025-11-23T22:30:12.657Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:30:37.859Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T22:30:38.956Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:31:00.095Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 228ms",
|
||||||
|
"timestamp": "2025-11-23T22:31:00.500Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:33:32.440Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 715ms",
|
||||||
|
"timestamp": "2025-11-23T22:33:33.156Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:33:50.161Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 490ms",
|
||||||
|
"timestamp": "2025-11-23T22:33:50.650Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:34:30.143Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T22:34:31.231Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:35:02.455Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 383ms",
|
||||||
|
"timestamp": "2025-11-23T22:35:02.839Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:35:36.609Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 422ms",
|
||||||
|
"timestamp": "2025-11-23T22:35:37.031Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:35:51.554Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T22:35:52.771Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:36:30.590Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T22:36:31.747Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:36:52.822Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 689ms",
|
||||||
|
"timestamp": "2025-11-23T22:36:53.511Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:44:59.159Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 150ms",
|
||||||
|
"timestamp": "2025-11-23T22:44:59.308Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: closeAllDiffTabs",
|
||||||
|
"timestamp": "2025-11-23T22:45:00.201Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'closeAllDiffTabs' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T22:45:01.503Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:45:38.809Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 357ms",
|
||||||
|
"timestamp": "2025-11-23T22:45:39.167Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:45:48.804Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 498ms",
|
||||||
|
"timestamp": "2025-11-23T22:45:49.303Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: openDiff",
|
||||||
|
"timestamp": "2025-11-23T22:48:09.272Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'openDiff' still running (30s elapsed)",
|
||||||
|
"timestamp": "2025-11-23T22:48:39.277Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'openDiff' still running (60s elapsed)",
|
||||||
|
"timestamp": "2025-11-23T22:49:09.277Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: close_tab",
|
||||||
|
"timestamp": "2025-11-23T22:49:32.047Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:49:32.186Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'close_tab' completed successfully in 252ms",
|
||||||
|
"timestamp": "2025-11-23T22:49:32.300Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'openDiff' completed successfully in 1m 23s",
|
||||||
|
"timestamp": "2025-11-23T22:49:32.302Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: close_tab",
|
||||||
|
"timestamp": "2025-11-23T22:49:32.304Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 122ms",
|
||||||
|
"timestamp": "2025-11-23T22:49:32.307Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'close_tab' completed successfully in 128ms",
|
||||||
|
"timestamp": "2025-11-23T22:49:32.432Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:49:34.080Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 722ms",
|
||||||
|
"timestamp": "2025-11-23T22:49:34.802Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:50:25.996Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 316ms",
|
||||||
|
"timestamp": "2025-11-23T22:50:26.313Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:50:42.352Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 806ms",
|
||||||
|
"timestamp": "2025-11-23T22:50:43.158Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:52:48.715Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 424ms",
|
||||||
|
"timestamp": "2025-11-23T22:52:49.139Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:54:22.675Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 532ms",
|
||||||
|
"timestamp": "2025-11-23T22:54:23.208Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:54:47.100Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 692ms",
|
||||||
|
"timestamp": "2025-11-23T22:54:47.792Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:55:19.712Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T22:55:21.570Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:55:58.133Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 460ms",
|
||||||
|
"timestamp": "2025-11-23T22:55:58.593Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T22:56:13.631Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 328ms",
|
||||||
|
"timestamp": "2025-11-23T22:56:13.957Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:02:08.797Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 379ms",
|
||||||
|
"timestamp": "2025-11-23T23:02:09.175Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: closeAllDiffTabs",
|
||||||
|
"timestamp": "2025-11-23T23:02:10.597Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'closeAllDiffTabs' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T23:02:11.779Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:17:55.839Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 2s",
|
||||||
|
"timestamp": "2025-11-23T23:17:58.557Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:18:34.398Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T23:18:35.729Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:19:00.542Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 966ms",
|
||||||
|
"timestamp": "2025-11-23T23:19:01.508Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: openDiff",
|
||||||
|
"timestamp": "2025-11-23T23:21:06.782Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: close_tab",
|
||||||
|
"timestamp": "2025-11-23T23:21:20.522Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:21:20.649Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'close_tab' completed successfully in 179ms",
|
||||||
|
"timestamp": "2025-11-23T23:21:20.698Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 52ms",
|
||||||
|
"timestamp": "2025-11-23T23:21:20.701Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:21:21.552Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'openDiff' completed successfully in 14s",
|
||||||
|
"timestamp": "2025-11-23T23:21:21.706Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: close_tab",
|
||||||
|
"timestamp": "2025-11-23T23:21:21.708Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 258ms",
|
||||||
|
"timestamp": "2025-11-23T23:21:21.810Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'close_tab' completed successfully in 306ms",
|
||||||
|
"timestamp": "2025-11-23T23:21:22.014Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:21:32.846Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T23:21:34.419Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:22:40.715Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 922ms",
|
||||||
|
"timestamp": "2025-11-23T23:22:41.636Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:23:02.411Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T23:23:03.574Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:38:26.515Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T23:38:28.241Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:39:14.131Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T23:39:15.820Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:40:11.761Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 743ms",
|
||||||
|
"timestamp": "2025-11-23T23:40:12.506Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:40:47.755Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 2s",
|
||||||
|
"timestamp": "2025-11-23T23:40:50.058Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: openDiff",
|
||||||
|
"timestamp": "2025-11-23T23:42:46.763Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: close_tab",
|
||||||
|
"timestamp": "2025-11-23T23:42:59.455Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: close_tab",
|
||||||
|
"timestamp": "2025-11-23T23:42:59.485Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'close_tab' completed successfully in 3s",
|
||||||
|
"timestamp": "2025-11-23T23:43:03.256Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"error": "Tab close: Invalid tab not found!",
|
||||||
|
"timestamp": "2025-11-23T23:43:03.374Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'close_tab' failed after 3s: Tab close: Invalid tab not found!",
|
||||||
|
"timestamp": "2025-11-23T23:43:03.410Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'openDiff' completed successfully in 16s",
|
||||||
|
"timestamp": "2025-11-23T23:43:03.490Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:44:43.775Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 237ms",
|
||||||
|
"timestamp": "2025-11-23T23:44:44.012Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: closeAllDiffTabs",
|
||||||
|
"timestamp": "2025-11-23T23:44:44.819Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'closeAllDiffTabs' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T23:44:46.095Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:45:27.029Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-23T23:45:28.333Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:45:46.899Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 321ms",
|
||||||
|
"timestamp": "2025-11-23T23:45:47.278Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:55:53.151Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 212ms",
|
||||||
|
"timestamp": "2025-11-23T23:55:53.363Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: closeAllDiffTabs",
|
||||||
|
"timestamp": "2025-11-23T23:55:53.840Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'closeAllDiffTabs' completed successfully in 234ms",
|
||||||
|
"timestamp": "2025-11-23T23:55:54.075Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:56:36.760Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 685ms",
|
||||||
|
"timestamp": "2025-11-23T23:56:37.445Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:57:05.416Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 2s",
|
||||||
|
"timestamp": "2025-11-23T23:57:08.327Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:57:26.793Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 433ms",
|
||||||
|
"timestamp": "2025-11-23T23:57:27.226Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: openDiff",
|
||||||
|
"timestamp": "2025-11-23T23:59:18.527Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: close_tab",
|
||||||
|
"timestamp": "2025-11-23T23:59:36.617Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:59:36.754Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'close_tab' completed successfully in 192ms",
|
||||||
|
"timestamp": "2025-11-23T23:59:36.810Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'openDiff' completed successfully in 18s",
|
||||||
|
"timestamp": "2025-11-23T23:59:36.813Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: close_tab",
|
||||||
|
"timestamp": "2025-11-23T23:59:36.815Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 65ms",
|
||||||
|
"timestamp": "2025-11-23T23:59:36.819Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:59:37.398Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'close_tab' completed successfully in 971ms",
|
||||||
|
"timestamp": "2025-11-23T23:59:37.787Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 392ms",
|
||||||
|
"timestamp": "2025-11-23T23:59:37.789Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-23T23:59:50.072Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 766ms",
|
||||||
|
"timestamp": "2025-11-23T23:59:50.840Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: openDiff",
|
||||||
|
"timestamp": "2025-11-24T00:01:11.566Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: close_tab",
|
||||||
|
"timestamp": "2025-11-24T00:01:16.861Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-24T00:01:17.041Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'close_tab' completed successfully in 242ms",
|
||||||
|
"timestamp": "2025-11-24T00:01:17.096Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'openDiff' completed successfully in 5s",
|
||||||
|
"timestamp": "2025-11-24T00:01:17.100Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: close_tab",
|
||||||
|
"timestamp": "2025-11-24T00:01:17.102Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 63ms",
|
||||||
|
"timestamp": "2025-11-24T00:01:17.104Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-24T00:01:17.393Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'close_tab' completed successfully in 848ms",
|
||||||
|
"timestamp": "2025-11-24T00:01:17.950Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 561ms",
|
||||||
|
"timestamp": "2025-11-24T00:01:17.952Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-24T00:01:47.109Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 1s",
|
||||||
|
"timestamp": "2025-11-24T00:01:48.751Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Calling MCP tool: getDiagnostics",
|
||||||
|
"timestamp": "2025-11-24T00:01:56.507Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"debug": "Tool 'getDiagnostics' completed successfully in 634ms",
|
||||||
|
"timestamp": "2025-11-24T00:01:57.155Z",
|
||||||
|
"sessionId": "d79a1bf1-54e8-47ac-8a1f-73795a075990",
|
||||||
|
"cwd": "/home/mdares"
|
||||||
|
}
|
||||||
|
]
|
||||||
Binary file not shown.
BIN
.cache/gstreamer-1.0/registry.x86_64.bin
Normal file
BIN
.cache/gstreamer-1.0/registry.x86_64.bin
Normal file
Binary file not shown.
BIN
.cache/ibus/bus/registry
Normal file
BIN
.cache/ibus/bus/registry
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/index
Normal file
BIN
.cache/mesa_shader_cache_db/index
Normal file
Binary file not shown.
0
.cache/mesa_shader_cache_db/marker
Normal file
0
.cache/mesa_shader_cache_db/marker
Normal file
BIN
.cache/mesa_shader_cache_db/part0/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part0/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part0/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part0/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part1/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part1/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part1/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part1/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part10/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part10/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part10/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part10/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part11/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part11/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part11/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part11/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part12/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part12/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part12/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part12/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part13/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part13/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part13/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part13/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part14/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part14/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part14/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part14/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part15/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part15/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part15/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part15/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part16/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part16/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part16/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part16/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part17/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part17/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part17/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part17/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part18/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part18/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part18/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part18/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part19/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part19/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part19/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part19/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part2/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part2/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part2/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part2/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part20/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part20/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part20/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part20/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part21/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part21/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part21/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part21/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part22/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part22/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part22/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part22/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part23/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part23/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part23/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part23/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part24/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part24/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part24/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part24/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part25/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part25/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part25/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part25/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part26/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part26/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part26/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part26/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part27/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part27/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part27/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part27/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part28/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part28/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part28/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part28/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part29/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part29/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part29/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part29/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part3/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part3/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part3/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part3/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part30/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part30/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part30/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part30/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part31/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part31/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part31/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part31/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part32/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part32/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part32/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part32/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part33/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part33/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part33/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part33/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part34/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part34/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part34/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part34/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part35/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part35/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part35/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part35/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part36/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part36/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part36/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part36/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part37/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part37/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part37/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part37/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part38/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part38/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part38/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part38/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part39/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part39/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part39/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part39/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part4/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part4/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part4/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part4/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part40/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part40/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part40/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part40/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part41/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part41/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part41/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part41/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part42/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part42/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part42/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part42/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part43/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part43/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part43/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part43/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part44/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part44/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part44/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part44/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part45/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part45/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part45/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part45/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part46/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part46/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part46/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part46/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part47/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part47/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part47/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part47/mesa_cache.idx
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part48/mesa_cache.db
Normal file
BIN
.cache/mesa_shader_cache_db/part48/mesa_cache.db
Normal file
Binary file not shown.
BIN
.cache/mesa_shader_cache_db/part48/mesa_cache.idx
Normal file
BIN
.cache/mesa_shader_cache_db/part48/mesa_cache.idx
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user