Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
729b6a8
APPENG-4528 and APPENG-4529
RedTanny Feb 23, 2026
97d7e2d
basic react graph
RedTanny Feb 23, 2026
0398a34
save
RedTanny Feb 24, 2026
e011d31
make baseline
RedTanny Feb 24, 2026
cc25c7c
input field was filled
RedTanny Feb 24, 2026
b37fe45
arugment filled
RedTanny Feb 24, 2026
9ddea1a
save progress
RedTanny Feb 24, 2026
0ff74d3
debug tools check agent instances
RedTanny Feb 24, 2026
71fdd45
llm adds more detail params for functions, agent state with input and…
RedTanny Feb 25, 2026
69a0b31
solve the verification characters issue
RedTanny Feb 25, 2026
37886af
set the max_steps to max_iterations in config
RedTanny Feb 25, 2026
30fe5d8
add preprocess node
RedTanny Feb 25, 2026
851a93f
save last changes
RedTanny Feb 25, 2026
d00670e
last changes 3
RedTanny Feb 25, 2026
69b1f47
claude code review
RedTanny Feb 26, 2026
58943c6
save unfinish work
RedTanny Feb 27, 2026
3feba6e
AI claude phase 1
RedTanny Feb 27, 2026
3cbccb1
AI claude prompt iteration improvments
RedTanny Feb 27, 2026
da1112c
Improve context
RedTanny Feb 27, 2026
55df7ed
clean java cache
RedTanny Feb 28, 2026
030bb36
disable the java clean cache command
RedTanny Feb 28, 2026
c2dd659
Save last changes
RedTanny Mar 1, 2026
e54104a
update parsing
RedTanny Mar 1, 2026
8cd05e1
temp hardcore use graph
RedTanny Mar 1, 2026
1b418b7
Improve Prompt logic and behaviour
RedTanny Mar 2, 2026
ec96fc3
Second round of prompt improvments
RedTanny Mar 2, 2026
0cc0f60
Java scripts improvments
RedTanny Mar 2, 2026
fc5983a
javascript improvments round2
RedTanny Mar 3, 2026
b3c99ba
before cleanup and rollback
RedTanny Mar 4, 2026
352a600
clean: move classification query prompt to internals
RedTanny Mar 4, 2026
b8b0e36
Round 1 cleanup Inteli don't support multi package
RedTanny Mar 4, 2026
61dc8ed
Merge branch 'main' into new_agent_arch
RedTanny Mar 4, 2026
5e16242
remove del
RedTanny Mar 4, 2026
962b81f
Add Rule Tracker check for rule no. 7
RedTanny Mar 5, 2026
dcdeaf4
exception protection and python fix and rule tracker
RedTanny Mar 5, 2026
d0bde11
fix java and cpp
RedTanny Mar 5, 2026
b7c1cae
clear postgress cache
RedTanny Mar 5, 2026
bc1c1de
clean java cache
RedTanny Mar 5, 2026
d3193bd
Add Rule number 8
RedTanny Mar 5, 2026
5b14fa8
Route prompts by checklist question if it is reachability question or…
RedTanny Mar 5, 2026
33c593b
Applly feedback from last runs
RedTanny Mar 6, 2026
821676b
fixed edge case where inteli for go is not review -> no vull array ne…
RedTanny Mar 6, 2026
4daffb7
inject reachability prefix in summary when all CCA results are negative
RedTanny Mar 6, 2026
7f608fc
add target functions from inteli cve if exist
RedTanny Mar 7, 2026
6cdd41d
New Gate check that vul package exist
RedTanny Mar 7, 2026
e8dcf07
Can remove cache file using env variables can be configure from googl…
RedTanny Mar 7, 2026
5461803
Handle go multi package options in context
RedTanny Mar 8, 2026
b78eb83
clear java cache
RedTanny Mar 8, 2026
d967b2e
remove information not needed taking tokens
RedTanny Mar 8, 2026
b1b6589
disable java clear cache
RedTanny Mar 8, 2026
348e6f1
fix regression issue
RedTanny Mar 8, 2026
7c9de3c
Add Code understanding into the observation prompt
RedTanny Mar 9, 2026
f2d38c7
improve function locator return results when pkg not found using sbom…
RedTanny Mar 10, 2026
91dd8ed
Split Observation task to two llm calls
RedTanny Mar 11, 2026
7030fbd
fix for go full fqdn search
RedTanny Mar 11, 2026
90acf57
fix go exeception in parser
RedTanny Mar 11, 2026
b02caf1
remove cache java
RedTanny Mar 11, 2026
364315b
call the function call finder tool
RedTanny Mar 12, 2026
ff134bd
fixed arguments for tool call function finder go
RedTanny Mar 15, 2026
ca81036
fix threading in CCA
RedTanny Mar 15, 2026
84fa896
Merge branch 'main' into new-agent
RedTanny Mar 25, 2026
d4c3e50
set tracing of tokens only when needed
RedTanny Mar 25, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .tekton/on-cm-runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,13 @@ spec:
echo "Cache link created successfully."
ls -ld "${CACHE_DIR_TARGET}"

# Remove cached pickle files if REMOVE_CACHE_FILE is set (via Google Sheet config)
# e.g. REMOVE_CACHE_FILE=https.github.com.postgres.postgres
if [ -n "${REMOVE_CACHE_FILE:-}" ]; then
echo "--- Removing cache files matching: ${CACHE_DIR_TARGET}/pickle/${REMOVE_CACHE_FILE}* ---"
rm -fv "${CACHE_DIR_TARGET}/pickle/${REMOVE_CACHE_FILE}"* || echo " No matching files found."
fi

# Copy with verbose error if it fails
echo "--- Exporting Telemetry Config ---"
cp -v configs/config-no-tracing.yml $DATA_DIR/config-no-tracing.yml || echo "Failed to copy config"
Expand Down
Loading
Loading