Skip to main content

fastforge

Fastforge fundamentals: installing and upgrading the CLI, project configuration (.fastforge/config.yaml), workflow file syntax and troubleshooting (.fastforge/workflows/*.yml, "workflow validate" failures), app package analysis (fastforge analyze for APK/AAB/IPA/DMG/.app size, tech stack, and signing reports), and general "how do I use fastforge" questions. Use this skill whenever fastforge is mentioned and the request is not clearly one of the specialized scenarios: building/packaging apps is fastforge-package, uploading artifacts to distribution services is fastforge-publish, and App Store Connect / Google Play operations are fastforge-stores. Also use it when a fastforge command fails and the cause is unclear, or when the user asks what fastforge can do.

الانتقال إلى التثبيت

معلومات المصدر

المستودع
fastforgedev/skills
آخر نشاط في المصدر
١٢ أغسطس ٢٠٢٦ في ١٣:٥٧
لغة SKILL.md المكتشفة
الإنجليزية
النجوم
٠
التفرعات
٠

خيارات التثبيت

يُحدَّد Prompt الذي يراجع المصدر أولًا بشكل افتراضي. يمكنك التبديل إلى أمر مباشر أو تنزيل نسخة محلية.

مراجعة ملفات المصدر

اقرأ SKILL.md وأي ملفات مرافقة يعرضها SkillsMP قبل أن تقرر التثبيت.

مستكشف الملفات
4 ملفات

عرض SKILL.md

SKILL.md
تعليمات المصدر · معاينة للقراءة فقط
name
fastforge
description
Fastforge fundamentals: installing and upgrading the CLI, project configuration (.fastforge/config.yaml), workflow file syntax and troubleshooting (.fastforge/workflows/*.yml, "workflow validate" failures), app package analysis (fastforge analyze for APK/AAB/IPA/DMG/.app size, tech stack, and signing reports), and general "how do I use fastforge" questions. Use this skill whenever fastforge is mentioned and the request is not clearly one of the specialized scenarios: building/packaging apps is fastforge-package, uploading artifacts to distribution services is fastforge-publish, and App Store Connect / Google Play operations are fastforge-stores. Also use it when a fastforge command fails and the cause is unclear, or when the user asks what fastforge can do.
# Fastforge Fastforge is a CLI that builds, packages, and publishes apps (Flutter, native Android/iOS/macOS) with one configuration. This skill covers the CLI itself: installation, configuration, workflow files, artifact analysis, and routing to the right command or companion skill. ## Command map | Command | Purpose | Skill to consult | | --- | --- | --- | | `fastforge package` / `build` | Build and package artifacts | `fastforge-package` | | `fastforge publish` | Upload an existing artifact to a distribution target | `fastforge-publish` | | `fastforge appstore` / `googleplay` / `store` | Store operations: builds, versions, review, tracks, catalog | `fastforge-stores` | | `fastforge workflow` | Run local YAML workflows | this skill, [references/workflow.md](references/workflow.md) | | `fastforge analyze` | Inspect APK/AAB/IPA/DMG/.app artifacts | this skill, [references/analyze.md](references/analyze.md) | | `fastforge release` | Legacy compatibility only — prefer `workflow` | this skill | | `fastforge upgrade` | Currently a no-op; reinstall to upgrade | this skill | | `fastforge version-check` | Prints local version only (no network check) | this skill | ## Installation The CLI is a standalone binary; it does not bundle platform SDKs, build tools, signing tools, or third-party publishing clients. macOS / Linux (default path `/usr/local/bin/fastforge`; supports macOS arm64/x86_64, Linux aarch64/x86_64 GNU): ```bash curl -fsSL https://raw.githubusercontent.com/fastforgedev/fastforge/main/install.sh | sh ``` Pin a version or change the directory with `FASTFORGE_VERSION` / `FASTFORGE_INSTALL_DIR` environment variables on the same command. Windows (PowerShell; installs to `%LOCALAPPDATA%\fastforge\bin` and adds it to the user PATH): ```powershell iwr https://raw.githubusercontent.com/fastforgedev/fastforge/main/install.ps1 | iex ``` From source: `cargo install --path apps/cli` inside a clone of `https://github.com/fastforgedev/fastforge`. Locally built binaries print a startup warning to distinguish them from official release builds — expected, not an error. Verify with `fastforge --version`. If the shell cannot find the command, check that the install directory is in `PATH`. To upgrade, re-run the install script (optionally with `FASTFORGE_VERSION`) — `fastforge upgrade` is currently a no-op. Uninstall with the matching `uninstall.sh` / `uninstall.ps1`, passing the same `FASTFORGE_INSTALL_DIR` if one was used at install time. ## Toolchain prerequisites Fastforge shells out to platform tools. When a command fails, first check the dependency for that operation: | Operation | Requires | | --- | --- | | Android build | Android SDK, Gradle toolchain | | APK/AAB analysis | `aapt2` under `ANDROID_HOME` (AAB alternatively `BUNDLETOOL` jar) | | iOS / macOS build, DMG/.app analysis | macOS, Xcode command-line tools | | Flutter build | Flutter SDK with `flutter` in `PATH` | | App Store upload | macOS, `xcrun`, App Store Connect credentials | | Firebase publishing | Firebase CLI | | Vercel publishing | Vercel CLI | ## Project configuration Per-project state lives under `.fastforge/` in the project root: ```text .fastforge/ ├── config.yaml # store apps + auth for `fastforge store` commands ├── workflows/ # local workflow YAML files └── stores/ # catalog data pulled from stores ``` Read [references/config.md](references/config.md) before writing or editing `.fastforge/config.yaml`. Two rules matter everywhere: credentials are passed through process environment variables (never CLI args, never committed), and config values may reference them as `${ENV_NAME}`. ## Workflows `fastforge workflow` runs GitHub-Actions-style YAML from `.fastforge/workflows/`. Workflows are the mechanism the other fastforge skills use for anything repeatable or multi-step — read [references/workflow.md](references/workflow.md) for the full syntax, the `fastforge/package` and `fastforge/publish` actions, and validation before generating or debugging any workflow file. Quick diagnostics for a failing workflow: 1. `fastforge workflow validate <file>` — parses structure only; it does not execute steps, so a valid file can still fail at run time. 2. `build-args` and `publish-args` must be **JSON object strings**, not YAML maps — this is the most common authoring mistake. 3. With multiple workflow files, `workflow run` needs an explicit `--file`. ## Artifact analysis `fastforge analyze` reports identity, tech stack, size composition, and signing for `.apk`, `.aab`, `.ipa`, `.dmg`, and `.app` inputs, as JSON or a self-contained HTML report: ```bash fastforge analyze dist/app.apk # JSON to stdout fastforge analyze dist --output report.html # scan a directory, HTML report ``` DMG and `.app` analysis run only on macOS. Read [references/analyze.md](references/analyze.md) for per-format fields, dependencies, and CI usage before interpreting or scripting analysis output. ## Known limitations to state plainly - `fastforge upgrade` does nothing yet; `version-check` never checks the network. - `fastforge release` exists only for legacy compatibility — steer users to workflows. - The `fastforge-package` skill has the authoritative platform/format matrix; `--platform` is optional on `package`/`build` (inferred from targets and project layout when unambiguous).
عرض على GitHub