A SolveForce Infrastructure System
Published by SolveForce
Author: Ronald Joseph Legarski, Jr.
ATOM is a modular telecom intelligence layer within the SolveForce constellation, designed to unify connectivity, monitoring, diagnostics, and service orchestration using precise linguistic structuring and standardized systems logic.
This repository contains the canonical implementation for the ATOM microsite (https://atom.solveforce.com), its documentation, architecture, and service catalogs.
ATOM exists as the telecom intelligence nucleus, providing:
- Carrier and service indexing
- Fiber, broadband, wireless, satellite, and private line cataloging
- Edge and IoT connectivity mapping
- API-ready lookup endpoints (future)
- AI-assisted diagnostics and recommendations (future)
- Standardized language and terminology across SolveForce properties
This repo is designed as the reference template for all future SolveForce microsites.
.
├─ README.md
├─ LICENSE
├─ CONTRIBUTING.md
├─ CODE_OF_CONDUCT.md
├─ CHANGELOG.md
├─ .gitignore
├─ .editorconfig
├─ .env.example
├─ src/
│ └─ atom/
│ ├─ __init__.py
│ └─ main.py
├─ web/
│ ├─ index.html
│ ├─ styles.css
│ └─ scripts.js
├─ content/
│ ├─ atom-overview.md
│ ├─ telecom-definitions.md
│ ├─ solveforce-network-map.md
│ ├─ edge-modules/
│ │ └─ fiber-intelligence.md
│ ├─ biotech-neuro-terminology/
│ │ ├─ index.md
│ │ └─ *.md
│ ├─ quantum-terminology/
│ │ ├─ index.md
│ │ └─ *.md
│ └─ quantum-physics-terminology/
│ ├─ index.md
│ └─ *.md
│ └─ edge-modules/
│ └─ fiber-intelligence.md
├─ docs/
│ ├─ index.md
│ ├─ architecture.md
│ └─ decisions/
│ └─ adr-0001-project-foundation.md
├─ tests/
│ └─ test_sanity.py
└─ .github/
├─ workflows/
│ └─ ci.yml
├─ ISSUE_TEMPLATE/
│ ├─ bug_report.md
│ └─ feature_request.md
└─ PULL_REQUEST_TEMPLATE.md
git clone https://github.com/solveforceapp/atom.git
cd atompython -m http.server 8080 --directory webThen open: http://localhost:8080
- Edit
web/index.html,styles.css, andscripts.jsfor the public site. After making changes runpython -m tools.sync_rootto refresh the repository root landing page and accompanying assets. - Edit
content/*.mdfor long-form descriptions, service catalogs, and playbooks. - Add or update terminology pages in
content/quantum-terminology/to extend the SolveForce A–Z glossary for quantum computing and physics. - Contribute new or refined quantum and atomic physics definitions in
content/quantum-physics-terminology/, where each term lives in its own file for precise linking across SolveForce properties. - Maintain the biotechnology and neurotechnology reference set in
content/biotech-neuro-terminology/, ensuring each term’s standalone file is kept synchronized with the directory index for consistent linking across SolveForce properties. - Edit
web/index.html,styles.css, andscripts.jsfor the public site. - Edit
index.htmlin the repository root after updatingweb/index.htmlso the homepage at/mirrors the canonical microsite content. Copy the markup fromweb/index.htmland adjust the stylesheet/script paths to point atweb/. - Edit
content/*.mdfor long-form descriptions, service catalogs, and playbooks. - Use
docs/architecture.mdand ADRs to record structural decisions.
Run tests (placeholder):
pytestTo use this as a template for another SolveForce microsite:
- Fork the repo.
- Replace
ATOMwith the new service name. - Adjust content under
/weband/content. - Update docs and links.
MIT License © 2025 Ronald Joseph Legarski, Jr. / SolveForce