aceengineer-website-update

Daily automated website updates with competitor analysis and content sync

5 stars

Best use case

aceengineer-website-update is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Daily automated website updates with competitor analysis and content sync

Teams using aceengineer-website-update should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/aceengineer-website-update/SKILL.md --create-dirs "https://raw.githubusercontent.com/vamseeachanta/workspace-hub/main/.agents/skills/business/content-design/aceengineer-website-update/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/aceengineer-website-update/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How aceengineer-website-update Compares

Feature / Agentaceengineer-website-updateStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Daily automated website updates with competitor analysis and content sync

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# AceEngineer Website Update Skill

Automates daily website maintenance including competitor SEO analysis and content synchronization from related repositories.

## Quick Start

```bash
# Run full daily update
./scripts/daily-update.sh

# Manual competitor analysis
python scripts/competitor_analysis.py

# Manual content sync
python scripts/content_sync.py --digitalmodel ../digitalmodel --worldenergydata ../worldenergydata

# Setup cron job
./scripts/cron-setup.sh
```

## Proven website publish workflow

Use this when adding or fixing public pages on aceengineer.com.

1. Edit source files under `content/` only.
   - Do not hand-edit `dist/` as the source of truth.
   - For new public pages, create `content/<section>/.../index.html`.
   - If using shared nav/footer/assets, include frontmatter like:
   ```html
   ---
   rootPath: "../../"
   ---
   ```

2. Build locally from repo root:
   ```bash
   npm test -- --runInBand
   npm run build
   ```
   This regenerates `dist/` via `node build.js` using the PostHTML include/expression pipeline.

3. Verify local routes before pushing.
   Example:
   ```bash
   python -m http.server 8788 --directory dist
   curl -I http://127.0.0.1:8788/<path>
   ```
   For important pages, also browser-check the rendered page.

4. Commit only source changes required for deployment.
   In this repo, `dist/` is gitignored; Vercel rebuilds from `content/`.

5. Push to `main`:
   ```bash
   git push origin main
   ```
   Vercel auto-deploys from `main` using:
   - `buildCommand: npm run build`
   - `outputDirectory: dist`

6. Poll production until live:
   ```bash
   curl -k -L -s -o /dev/null -w '%{http_code}\n' https://www.aceengineer.com/<path>
   ```
   Expect an initial 404 during rollout; retry until 200.

7. For GTM/demo work, verify both:
   - the new page itself
   - any inbound links from gallery/index pages

## Critical findings

- The real source tree is `content/`; `dist/` is generated and ignored by git.
- Vercel deployment is automatic after push to `main`; no manual deploy command was needed.
- Production propagation can lag briefly; polling with `curl` caught the transition from 404 to 200.
- For new nested pages (e.g. `content/methodology/.../index.html`), `rootPath` must match nesting depth so shared assets/nav links resolve correctly after build.

## Features

### Competitor Analysis
- Tracks keyword rankings for offshore engineering terms
- Auto-detects competitors from search results
- Generates weekly HTML reports with trends
- Provides SEO improvement recommendations

### Content Sync
- Syncs S-N curve statistics from digitalmodel
- Updates Python module counts
- Imports BSEE production dashboards from worldenergydata
- Generates blog posts from documentation

## Configuration

- `config/keywords.yaml` - Keywords to track
- `config/content-sync.yaml` - Source paths and sync rules

## Outputs

- `reports/competitor-analysis/latest.html` - Latest competitor report
- `assets/data/statistics.json` - Updated site statistics
- `dist/demos/` - Synced demonstration files

## Cron Schedule

Daily at 6 AM local time:
```
0 6 * * * /mnt/github/workspace-hub/aceengineer-website/scripts/daily-update.sh
```

## Dependencies

```bash
pip install pyyaml requests beautifulsoup4
```

Related Skills

aceengineer-website-copy-alignment

5
from vamseeachanta/workspace-hub

Verify proposed copy changes to vamseeachanta/aceengineer-website against canonical sources in workspace-hub (llm-wiki, live site, strategy repo) before shipping. Produces a GitHub issue on the site repo documenting the check with a Match / Drift / Gap verdict.

Codex-plugin-update-id-scope

5
from vamseeachanta/workspace-hub

Fix Codex plugin update failures caused by using the short plugin name instead of the installed plugin id and wrong scope.

repo-cleanup-structure-section-updates

5
from vamseeachanta/workspace-hub

Sub-skill of repo-cleanup: Structure Section Updates (+1).

repo-cleanup-gitignore-updates

5
from vamseeachanta/workspace-hub

Sub-skill of repo-cleanup: Gitignore Updates.

agent-teams-workspace-work-profile-updated-2026-03-10

5
from vamseeachanta/workspace-hub

Sub-skill of agent-teams: Workspace Work Profile (Updated 2026-03-10).

github-issue-tracker-3-automated-progress-updates

5
from vamseeachanta/workspace-hub

Sub-skill of github-issue-tracker: 3. Automated Progress Updates (+5).

seo-optimizer-required-for-aceengineer

5
from vamseeachanta/workspace-hub

Sub-skill of seo-optimizer: Required for AceEngineer (+1).

lead-generation-icp-framework-for-aceengineer

5
from vamseeachanta/workspace-hub

Sub-skill of lead-generation: ICP Framework for AceEngineer.

knowledge-management-updates

5
from vamseeachanta/workspace-hub

Sub-skill of knowledge-management: Updates.

brand-guidelines-website

5
from vamseeachanta/workspace-hub

Sub-skill of brand-guidelines: Website (+3).

technology-stack-modernization-phase-3-dependency-updates

5
from vamseeachanta/workspace-hub

Sub-skill of technology-stack-modernization: Phase 3: Dependency Updates.

technology-stack-modernization-dependency-update-template

5
from vamseeachanta/workspace-hub

Sub-skill of technology-stack-modernization: Dependency Update Template.