Skip to content

Commit f240a68

Browse files
committed
Fix capitalization of Actionforge
1 parent c3331a1 commit f240a68

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

actfile-schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://actionforge.dev/schemas/actfile.json",
4-
"title": "ActionForge Graph File (.act)",
5-
"description": "Schema for ActionForge .act graph files — YAML-based workflow definitions with nodes, data connections, and execution connections.",
4+
"title": "Actionforge Graph File (.act)",
5+
"description": "Schema for Actionforge .act graph files — YAML-based workflow definitions with nodes, data connections, and execution connections.",
66
"type": "object",
77
"required": ["entry", "nodes"],
88
"additionalProperties": false,

actrun.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# actrun - ActionForge graph runner
2+
# actrun - Actionforge graph runner
33
#
44
# This script is deployed at:
55
# https://www.actionforge.dev/actrun.sh

cmd/cmd_mcp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
func buildMCPInstructions() string {
1515
var b strings.Builder
1616

17-
b.WriteString("This MCP server provides tools for debugging and running ActionForge graph (.act) files interactively. ")
17+
b.WriteString("This MCP server provides tools for debugging and running Actionforge graph (.act) files interactively. ")
1818
b.WriteString("Use the debug_* tools to step through graph execution node by node, set breakpoints, and inspect state.\n\n")
1919

2020
b.WriteString("If you just need to run a graph without debugging, use the actrun CLI directly instead of this MCP server:\n\n")

cmd/cmd_validate.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var ActfileSchema []byte
2020
var cmdValidate = &cobra.Command{
2121
Use: "validate [graph-file]",
2222
Short: "Validate a graph file.",
23-
Long: `Validates the structure, types, connections, and required inputs of an ActionForge graph file without executing it.`,
23+
Long: `Validates the structure, types, connections, and required inputs of an Actionforge graph file without executing it.`,
2424
Args: cobra.ArbitraryArgs,
2525
Run: func(cmd *cobra.Command, args []string) {
2626

@@ -153,7 +153,7 @@ func expandPath(path string) string {
153153
var cmdSchema = &cobra.Command{
154154
Use: "schema",
155155
Short: "Print the JSON schema for .act files.",
156-
Long: `Prints the JSON schema used to validate ActionForge graph (.act) files.`,
156+
Long: `Prints the JSON schema used to validate Actionforge graph (.act) files.`,
157157
Args: cobra.NoArgs,
158158
Run: func(cmd *cobra.Command, args []string) {
159159
fmt.Println(string(ActfileSchema))

mcp/debug/register.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ func RegisterDebugTools(s *server.MCPServer) {
1414
mcp.NewTool("debug_connect",
1515
mcp.WithDescription(
1616
"Connect to an actrun local debug server via WebSocket. "+
17-
"This is the entry point for debugging ActionForge graph (.act) files. "+
17+
"This is the entry point for debugging Actionforge graph (.act) files. "+
1818
"The entire debug flow is automated — the user provides an .act file path and optional flags, you handle the rest. "+
1919
"\n\nWorkflow: "+
2020
"(1) Start 'actrun --local' in the background with NO file argument and capture LOCAL_WS_PORT from stdout. "+

0 commit comments

Comments
 (0)