Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ dist/
/findings/
/recon/
/.pentesterflow/
/.agentpond/
bughunter-report-*.md
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,27 @@ Reports include:
| `~/.pentesterflow/logs/pentesterflow.log` | Structured JSON-lines logs. |
| `~/.pentesterflow/debug/session-*.jsonl` | Opt-in full session debug logs. |

### Optional AgentPond traces

OpenAI-compatible provider calls can be traced to storage you control. Tracing
is off unless `AGENTPOND_ENABLED=true`; the spans contain only the provider,
model, streaming flag, message/tool counts, finish reason, and output sizes.
Prompts, responses, target data, and credentials are not recorded.

For a local filesystem store:

```sh
npx agentpond env init local --provider fs \
--root "$PWD/.agentpond/envs/local/objects"
npx agentpond env use local
eval "$(npx agentpond env get local)"
AGENTPOND_ENABLED=true npm run dev
```

After an AI request, run `npx agentpond sync` and
`npx agentpond traces list` to inspect the trace. Configure another Files SDK
provider for persistent or shared storage.

Enable complete debug logs when reproducing usage issues:

```sh
Expand Down
Loading