factory-ai 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +2 -0
- package/bin/factory +6 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,12 @@ All notable changes follow semantic versioning and the Keep a Changelog structur
|
|
|
11
11
|
- Azure and Bedrock provider wizard.
|
|
12
12
|
- Durable evaluation, analytics, scaling, policy, extension, and recovery roadmap.
|
|
13
13
|
|
|
14
|
+
## [1.0.1] - 2026-07-13
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Resolve npm global CLI symlinks before loading bundled TUI, setup, infrastructure, deployment, and project-template files.
|
|
19
|
+
|
|
14
20
|
## [1.0.0] - 2026-07-12
|
|
15
21
|
|
|
16
22
|
### Added
|
package/README.md
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
One CEO interface delegates to a deterministic CTO that coordinates isolated coding, testing, security, and release agents across Azure AI and Bedrock—then delivers verified GitHub pull requests with durable memory, recovery, and cost visibility.
|
|
8
8
|
|
|
9
9
|
[](https://github.com/itsvedantkumar/factory-ai/actions/workflows/ci.yml)
|
|
10
|
+
[](https://www.npmjs.com/package/factory-ai)
|
|
11
|
+
[](https://www.npmjs.com/package/factory-ai)
|
|
10
12
|
[](https://nodejs.org/)
|
|
11
13
|
[](https://azure.microsoft.com/)
|
|
12
14
|
[](LICENSE)
|
package/bin/factory
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
set -euo pipefail
|
|
3
3
|
|
|
4
|
+
FACTORY_ROOT=$(dirname "$(dirname "$(realpath "$0")")")
|
|
4
5
|
CONFIG_FILE=${FACTORY_CONFIG_FILE:-$HOME/.config/factory-ai/config}
|
|
5
6
|
LEGACY_CONFIG_FILE=$HOME/.config/agent-factory/config
|
|
6
7
|
if [[ -f $CONFIG_FILE ]]; then source "$CONFIG_FILE"; elif [[ -f $LEGACY_CONFIG_FILE ]]; then source "$LEGACY_CONFIG_FILE"; fi
|
|
@@ -72,13 +73,13 @@ case "$command" in
|
|
|
72
73
|
exec "$0" submit "$repo" "$objective"
|
|
73
74
|
;;
|
|
74
75
|
ui)
|
|
75
|
-
FACTORY_RESOURCE_GROUP="$RESOURCE_GROUP" FACTORY_VM="$VM" FACTORY_SERVICE_BUS="$NAMESPACE" FACTORY_KEY_VAULT="$VAULT" node "$
|
|
76
|
+
FACTORY_RESOURCE_GROUP="$RESOURCE_GROUP" FACTORY_VM="$VM" FACTORY_SERVICE_BUS="$NAMESPACE" FACTORY_KEY_VAULT="$VAULT" node "$FACTORY_ROOT/src/tui.js"
|
|
76
77
|
;;
|
|
77
78
|
setup)
|
|
78
79
|
for dependency in az gh jq curl ssh-keygen node; do command -v "$dependency" >/dev/null || { printf 'Missing dependency: %s\n' "$dependency" >&2; exit 1; }; done
|
|
79
80
|
choices=$(mktemp)
|
|
80
81
|
trap 'rm -f "$choices"' EXIT
|
|
81
|
-
node "$
|
|
82
|
+
node "$FACTORY_ROOT/src/setup-menu.js" "$choices"
|
|
82
83
|
provider=$(jq -r .provider "$choices")
|
|
83
84
|
location=$(jq -r .location "$choices")
|
|
84
85
|
enterprise_org=$(jq -r .githubOrg "$choices")
|
|
@@ -92,7 +93,7 @@ case "$command" in
|
|
|
92
93
|
key=${FACTORY_SSH_KEY:-$HOME/.ssh/agent-factory-azure}
|
|
93
94
|
[[ -f $key ]] || ssh-keygen -t ed25519 -f "$key" -N "" -C agent-factory-azure
|
|
94
95
|
operator=$(az ad signed-in-user show --query id --output tsv)
|
|
95
|
-
deployment=$(az deployment group create --name agent-factory-setup --resource-group "$RESOURCE_GROUP" --template-file "$
|
|
96
|
+
deployment=$(az deployment group create --name agent-factory-setup --resource-group "$RESOURCE_GROUP" --template-file "$FACTORY_ROOT/infra/main.bicep" --parameters adminSshKey="$(< "$key.pub")" operatorObjectId="$operator" --output json)
|
|
96
97
|
vault=$(jq -r '.properties.outputs.keyVaultName.value' <<<"$deployment")
|
|
97
98
|
namespace=$(jq -r '.properties.outputs.serviceBusNamespace.value' <<<"$deployment")
|
|
98
99
|
VAULT=$vault
|
|
@@ -158,7 +159,7 @@ case "$command" in
|
|
|
158
159
|
parameters+=(AWS_REGION "$aws_region" FACTORY_MODEL_BUILDER "bedrock/$bedrock_builder")
|
|
159
160
|
fi
|
|
160
161
|
az vm run-command invoke --resource-group "$RESOURCE_GROUP" --name agent-factory-vm --command-id RunShellScript \
|
|
161
|
-
--scripts @"$
|
|
162
|
+
--scripts @"$FACTORY_ROOT/bootstrap/deploy-runtime.sh" --parameters "${parameters[@]}" --output none
|
|
162
163
|
printf 'Runtime deployed. Run: factory doctor && factory dashboard\n'
|
|
163
164
|
fi
|
|
164
165
|
;;
|
|
@@ -229,7 +230,7 @@ case "$command" in
|
|
|
229
230
|
[[ -d $target ]] || { printf 'Project directory does not exist: %s\n' "$target" >&2; exit 2; }
|
|
230
231
|
context="$target/.agent-factory"
|
|
231
232
|
mkdir -p "$context"
|
|
232
|
-
for template in "$
|
|
233
|
+
for template in "$FACTORY_ROOT/templates/project/"*.md; do
|
|
233
234
|
destination="$context/$(basename "$template")"
|
|
234
235
|
[[ -e $destination ]] || cp "$template" "$destination"
|
|
235
236
|
done
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "factory-ai",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Deploy a private autonomous coding-agent factory on Azure: isolated builders, testers, security reviewers, durable orchestration, multi-model routing, memory, cost controls, and gated GitHub pull requests.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|