diff --git a/.github/workflows/weekly-email.yml b/.github/workflows/weekly-email.yml
new file mode 100644
index 0000000..5936d30
--- /dev/null
+++ b/.github/workflows/weekly-email.yml
@@ -0,0 +1,53 @@
+name: Weekly Email
+
+on:
+ schedule:
+ - cron: '0 9 * * MON'
+ workflow_dispatch:
+
+env:
+ EMAIL_SUBJECT: Weekly status email
+ EMAIL_BODY: |
+ Weekly workflow report (Aura-Bridge Genesis)
+
+ ID: token-2026-01-20
+ Date: 2026-01-20
+ Title: Aura-Bridge Genesis
+ Status: logged
+
+ Summary:
+ Activation of the full Aura-Core Command Station with voice/text interface, multi-agent orchestration, token minting, and real-time dashboard integration across Web2/Web3.
+
+ Actions:
+ - Connected GPT-4o, Claude, Copilot, Perplexity, and Venice as agent runners
+ - Launched multi-LLM config pipeline across Ethereum, Monad, Scroll, Optimism, and Algorand
+ - Enabled clipboard → dashboard command flow
+ - Built Zena + Noodle assistant concept
+ - Mapped Allbridge role as conductor for network relay and chat memory sync
+ - Set public boundaries + visibility model for Aura, Noodle, and MVP
+ - Planned Token of the Day + mobile PWA dashboard command
+
+ Linked configs:
+ - multi-llm.config.json
+ - auracore-dash-alpha
+ - aura@mvpuknowme.ai
+
+ Dashboard: Aura-Core Command Station v0.1
+
+jobs:
+ send-email:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Send email
+ uses: dawidd6/action-send-mail@v3
+ with:
+ server_address: ${{ secrets.SMTP_SERVER }}
+ server_port: ${{ secrets.SMTP_PORT }}
+ username: ${{ secrets.SMTP_USERNAME }}
+ password: ${{ secrets.SMTP_PASSWORD }}
+ subject: ${{ env.EMAIL_SUBJECT }}
+ body: ${{ env.EMAIL_BODY }}
+ to: ${{ secrets.EMAIL_RECIPIENTS }}
+ from: ${{ secrets.EMAIL_SENDER }}
+ secure: true
+ convert_markdown: true
diff --git a/next-env.d.ts b/next-env.d.ts
index 52e831b..056f66b 100644
--- a/next-env.d.ts
+++ b/next-env.d.ts
@@ -1,5 +1,5 @@
///
///
-
+.swiftlint.yml
// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
diff --git a/next.config.ts b/next.config.ts
index 3915163..b78f5bc 100644
--- a/next.config.ts
+++ b/next.config.ts
@@ -2,7 +2,7 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
- reactStrictMode: true,
+ reactStrictMode: false
};
export default nextConfig;
diff --git a/package-lock.json b/package-lock.json
index 7639db8..5f1ceb6 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,7 +1,7 @@
{
"name": "agents.md",
"version": "0.1.0",
- "lockfileVersion": 3,
+ "lockfileVersion": 4,
"requires": true,
"packages": {
"": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 5b87c35..8585617 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -2782,4 +2782,18 @@ packages:
/yallist@5.0.0:
resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
engines: {node: '>=18'}
- dev: false
+ dev: true
+name: Lightning Epoch Debug
+on: [push, pull_request, workflow_dispatch]
+jobs:
+ test-lightning:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: Install Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: '18'
+ - run: npm install
+ - run: npm test
+