Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Jan 22, 2026

Recompiled all workflow lock files to reflect JavaScript handler changes merged from main, specifically the new createProjectHandler that auto-generates temporary IDs for GitHub Projects.

Changes:

  • Recompiled 133 workflow lock files with updated safe outputs MCP server configuration
  • Updated safe outputs HTTP server initialization steps
  • Added safe outputs API key and port environment variables to MCP gateway
  • Bumped Claude Code CLI version (2.1.14 → 2.1.15)

The lock files now include the create_project tool handler that returns temporary IDs to agents for project reference:

const createProjectHandler = args => {
  const entry = { ...(args || {}), type: "create_project" };
  if (!entry.temporary_id) {
    entry.temporary_id = "aw_" + crypto.randomBytes(6).toString("hex");
  }
  appendSafeOutput(entry);
  return {
    content: [{
      type: "text",
      text: JSON.stringify({
        result: "success",
        temporary_id: entry.temporary_id,
        project: `#${entry.temporary_id}`,
      }),
    }],
  };
};

💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Copilot AI changed the title [WIP] Style: Improve markdown formatting in safe outputs messages chore: recompile workflows after safe outputs handler changes Jan 22, 2026
Copilot AI requested a review from mnkiefer January 22, 2026 05:16
@mnkiefer mnkiefer marked this pull request as ready for review January 22, 2026 05:17
@mnkiefer mnkiefer merged commit 473e0c8 into fix-working Jan 22, 2026
@mnkiefer mnkiefer deleted the copilot/sub-pr-11179 branch January 22, 2026 05:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants