root
7f28c5b047
chore(script): fix registry verification
2026-03-31 11:43:35 +00:00
root
0c28231c3b
chore(script): add run-registry-tests
2026-03-31 11:37:03 +00:00
root
8b37189829
chore(registry): point packages to gitea.bytelyst.com
2026-03-31 10:53:13 +00:00
root
b1db0d583d
feat(dns): add ollama hostname support
2026-03-31 10:07:38 +00:00
e573e98cc1
docs(devops): add llmlab dns handoff
2026-03-31 02:32:01 -07:00
356c96e1d9
docs(devops): capture godaddy dns cutover and vm handoff
2026-03-31 02:25:58 -07:00
saravanakumardb1
c5458c4c0e
ci: update CI/CD configuration
2026-03-29 10:50:53 -07:00
saravanakumardb1
6f2572e90b
chore(ci): add local token drift check script
...
- Standalone script complementing the CI token-drift job
- Supports --fix mode to regenerate and stage changes
- Run: bash scripts/check-token-drift.sh
2026-03-28 01:01:06 -07:00
saravanakumardb1
409144a2ef
chore(scripts): add lint-infra, typecheck-all, test-all cross-repo scripts
2026-03-26 23:15:16 -07:00
saravanakumardb1
b6348fd4fe
fix(security): harden npm publish — add .npmrc + publishConfig to all 57 packages
...
- Created .npmrc with @bytelyst scoped registry pointing to local Gitea
- Added publishConfig.registry to all 57 @bytelyst/* package.json files
- Created scripts/harden-publish-config.sh for future re-runs
- Prevents accidental publish to npmjs.org or corporate JFrog registry
2026-03-26 21:51:05 -07:00
saravanakumardb1
911539f228
fix(workflows): support all repos in agent doc sync
2026-03-24 16:10:41 -07:00
saravanakumardb1
e8d145a130
fix(workflows): normalize repo management coverage
2026-03-24 16:05:12 -07:00
saravanakumardb1
f1793656f8
feat(scripts): make GITEA_NPM_HOST conditional on NETWORK
...
- NETWORK=corp → GITEA_NPM_HOST=localhost (local Gitea Docker)
- NETWORK=home → GITEA_NPM_HOST from ~/.gitea_vm_host (Azure VM)
- Fallback: localhost if ~/.gitea_vm_host doesn't exist
This enables all repo .npmrc files to use ${GITEA_NPM_HOST}:3300
instead of hardcoded localhost:3300, matching the existing
.npmrc.docker pattern used during Docker builds.
2026-03-24 15:45:59 -07:00
saravanakumardb1
6fbe8687ee
fix(scripts): switch-network.sh — add NO_PROXY + GITEA_NPM_TOKEN management
...
- Add NO_PROXY/no_proxy/NPM_CONFIG_NOPROXY=localhost,127.0.0.1 when
NETWORK=corp so local services (Gitea npm registry, Cosmos emulator,
Azurite) bypass the corporate proxy. Previously NO_PROXY was only set
in .zshrc line 5, making the script not self-contained.
- Add GITEA_NPM_TOKEN auto-load from ~/.gitea_npm_token file
(regardless of NETWORK). Reads are public, but publish needs the
token. This ensures local pnpm install resolves @bytelyst/* auth.
- Unset NO_PROXY/no_proxy/NPM_CONFIG_NOPROXY when NETWORK=home.
2026-03-24 15:36:46 -07:00
saravanakumardb1
64c9fc8afe
fix(docker): preserve peer deps in packed packages
2026-03-23 18:24:57 -07:00
saravanakumardb1
4687351de0
ci: update CI/CD configuration
2026-03-23 18:04:18 -07:00
saravanakumardb1
6d5450d9f7
fix(devops): derive gitea publish auth target from registry url
2026-03-23 15:52:29 -07:00
saravanakumardb1
7116749bbd
docs(devops): record local gitea registry rehearsal
2026-03-23 15:48:18 -07:00
saravanakumardb1
17a117f132
fix(docker): pack bytelyst consumer closure for prep
2026-03-22 15:51:17 -07:00
saravanakumardb1
22780b0e7e
fix(scripts): add tsconfig.json — fixes pnpm typecheck failure
...
The scripts/ workspace member had no tsconfig.json, so 'tsc --noEmit'
printed help text and exited 1, breaking 'pnpm typecheck' across the
entire monorepo.
2026-03-21 15:55:27 -07:00
saravanakumardb1
c252cfd198
feat(devops): encryption migration CLI with embedded product configs
...
- scripts/encrypt-migrate.ts — batch-encrypt existing plaintext Cosmos docs
- scripts/ added as pnpm workspace member for clean @bytelyst/* imports
- 10 product configs, 20 containers, 40+ fields
- --dry-run, --product, --container, --batch-size, --verbose flags
- Idempotent via __encrypted sentinel (migrateDocuments helper)
- Updated E2EE roadmap Sprint 6.2 as complete
2026-03-21 13:19:55 -07:00
saravanakumardb1
bb3f5385fc
feat(field-encrypt): create @bytelyst/field-encrypt package with AES-256-GCM envelope encryption
...
- 10 source files: types, aes-gcm, 3 key providers (memory/env/akv), envelope, key-cache, dek-store, guards, migration, factory
- 42 Vitest tests: AES-GCM roundtrips, tamper detection, unicode, 100KB payloads, key providers, DEK cache TTL/LRU, envelope lifecycle, migration (dry-run + idempotent), config validation
- AKV MEK creation script (scripts/create-encryption-keys.sh) for 10 product MEKs
- .env.example updated with FIELD_ENCRYPT_* vars
2026-03-21 09:18:10 -07:00
saravanakumardb1
6b63fda434
fix(kotlin-sdk): fix compile errors in kotlin-platform-sdk core components
...
- Fix MapSerializer/serializer imports in BLAuthClient, BLBlobClient, BLLicenseClient
- Add material-icons-extended dependency to build.gradle.kts
- Move 13 uncompiled files (UI, diagnostics, extended) to _deferred_ui/
(SurveyUI, BroadcastUI, BLAuthUI, DiagnosticsClient, NetworkInterceptor,
BreadcrumbTrail, DeviceStateCollector, DiagnosticsTypes, BLSurveyClient,
BLBroadcastClient, BLFeedbackClient, BLPasskeyManager, DeepLinkRouter)
- Move 2 broken test files to _deferred_ui/
- Core SDK compiles: 38/39 tests pass
- Unblocks all Android app builds (MindLyst, JarvisJr, LysnrAI, ChronoMind)
2026-03-19 17:01:34 -07:00
saravanakumardb1
710992e69f
docs: add corporate network/proxy setup (§9) to AGENTS.md + expand switch-network.sh header
2026-03-19 15:22:14 -07:00
saravanakumardb1
3ef40028ab
fix(gradle): add corporate proxy SSL truststore + Compose deps for kotlin-platform-sdk
...
- switch-network.sh: set GRADLE_OPTS with custom truststore when NETWORK=corp
- kotlin-platform-sdk: add repos to settings.gradle.kts for composite builds
- kotlin-platform-sdk: add Compose plugin + BOM + UI/Material3/Foundation deps
- kotlin-platform-sdk: use kotlinOptions (stable) instead of compilerOptions
2026-03-19 15:13:50 -07:00
root
a27a822fc2
Add prototype storage diagnostics and smoke test
2026-03-14 06:06:35 +00:00
root
a5e8890df2
Add Cosmos emulator prototype support
2026-03-14 05:24:01 +00:00
root
9e2fdb9643
Add prototype deployment workflow
2026-03-14 05:01:09 +00:00
saravanakumardb1
9a00fbd86a
fix(workflow): add FlowMonk to agent-doc generator
2026-03-10 23:35:29 -07:00
saravanakumardb1
38653bd9ec
ci: update CI/CD configuration
2026-03-10 11:32:25 -07:00
6d6ca217a5
chore(devops): improve railway deploy script, add env sync and deployment runbook
...
- Refactor railway-deploy.sh: add --sync-env, --dry-run, --detach flags and service selector
- Add railway-sync-env.sh for pre-deploy environment variable synchronization
- Add RAILWAY_DEPLOYMENT_RUNBOOK.md with step-by-step deployment guide
Co-Authored-By: Oz <oz-agent@warp.dev>
2026-03-05 20:03:59 -08:00
saravanakumardb1
7e47151918
fix(mcp-server): 3 A2A pipeline bug fixes from audit
...
- nomgap-client: add electrolyte_reminder + extended_fast_warning to PushTriggerType; rename scheduledAt → scheduledFor to match backend schema; fix startedAt type string → number (backend stores epoch ms)
- nomgap-tools: rename scheduledAt → scheduledFor in nomgap.push.fire tool schema + execute call
- safety-monitor-pipeline: fix FastStateResult.startedAt type number; use epoch ms directly instead of new Date(string)
- sync-diagnostics-pipeline: remove peakpulseGetStats (returns aggregate stats not sync queue); derive queueDepth from recentFailureCount telemetry; add lastSuccessfulSync derivation from events
2026-03-05 14:54:21 -08:00
saravanakumardb1
458d835e5a
ci: update CI/CD configuration
2026-03-03 12:08:22 -08:00
saravanakumardb1
1cba69948f
feat(ai-diagnostics): add REST API routes [3.3]
2026-03-03 11:57:00 -08:00
saravanakumardb1
44f36b0f1d
chore: add learning_ai_clock + learning_ai_fastgap to all repo workflows (backup, push, sync)
2026-02-28 12:54:56 -08:00
saravanakumardb1
7d5ed86724
feat: add universal prep-consumer.sh for portable Docker/CI builds + fix tsc errors
2026-02-28 12:32:11 -08:00
21aac9c95e
chore(deploy): add railway deploy script
2026-02-17 11:32:40 -08:00
saravanakumardb1
056f3236b6
feat(telemetry): Phase 3 — cluster resolve/ignore, audit logging, webhook alerts, metrics endpoint, Cosmos indexes
2026-02-17 10:50:29 -08:00
469efc6b8a
chore: add kv export audit
2026-02-15 00:43:29 -08:00
7c72ed702a
ci: add lysnr kv seeder
2026-02-15 00:31:31 -08:00
saravanakumardb1
25594381ab
feat: add AKV seed script and AZURE_KEYVAULT_URL to .env.example
2026-02-14 22:25:04 -08:00
saravanakumardb1
9b9f5ba0fd
chore: update project files
2026-02-14 20:48:39 -08:00
b2986744fa
chore(husky): run hooks from repo root and avoid npx
2026-02-14 12:55:41 -08:00
saravanakumardb1
d97c4ce4f0
chore(workflows): rename repo workflows to repo_* prefix, add sync-repos, remove pull from backup
2026-02-14 11:25:23 -08:00
2fe2d7fbc6
chore(husky): remove deprecated husky.sh sourcing
2026-02-14 09:56:40 -08:00
06aca239f4
chore(security): add secret scanning + playbook
2026-02-14 00:24:41 -08:00
saravanakumardb1
446201b423
feat(platform-service): update Dockerfile for pnpm workspace support
...
- Add proper workspace dependency resolution
- Build packages before service
- Use pnpm deploy for production
- Add docker-prep.sh script for helper commands
2026-02-12 23:43:40 -08:00
saravanakumardb1
2c588c51a3
refactor(scripts): simplify switch-network to env-var based approach
...
Single env var NETWORK=corp|home controls all proxy config.
Source from ~/.zshrc — sets http_proxy, NPM_CONFIG_REGISTRY,
PIP_TRUSTED_HOST, NODE_TLS_REJECT_UNAUTHORIZED automatically.
No more ~/.npmrc rewriting.
2026-02-12 20:38:57 -08:00
saravanakumardb1
97b6f4b8d1
chore: remove AT&T-specific refs, add dual-network switch script
...
- Replace hardcoded /Users/sd9235/ paths with $HOME in all SKILLS docs
- Use WORKSPACE_DIR variable in backup-main.sh (auto-resolves from script location)
- Genericize 'Forcepoint CertChecker' / 'corporate proxy' to 'SSL-intercepting proxy'
- Add scripts/switch-network.sh for toggling npm between corporate proxy and home
- No functional code changes — only comments, docs, and paths
2026-02-12 20:34:48 -08:00
saravanakumardb1
2e86353e77
fix(backup): show commits since last backup instead of total count
2026-02-12 20:17:46 -08:00