Skip to content
Merged
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
6 changes: 6 additions & 0 deletions blog/2026-04-15-psake-5-0-0-released.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,12 @@ if (-not $result.Success) {

Rather than parsing wall-of-text build output, the agent can check `$result.Success`, iterate `$result.Tasks`, and read `$_.Error` directly—structured data that maps cleanly to a tool call response. Pair this with `-OutputFormat JSON` if you need to pass the result across a process boundary or into a prompt.

:::tip Using psake with an AI coding assistant?

The [psake Agent Skill](/blog/introducing-psake-agent-skill) has been updated for 5.0 and is available through the [LLM tools marketplace](https://github.com/psake/psake-llm-tools). Install it into Claude, GitHub Copilot, or any Agent Skills–compatible client to give your assistant first-class knowledge of the new declarative syntax, caching, structured output, and migration patterns covered in this post.

:::

## New Testing APIs

Two new functions let you inspect and test your build scripts without running a full build:
Expand Down
Loading