Skip to content

Commit cfd4d12

Browse files
committed
Renamed app to CosmoPlot
1 parent d5fd74d commit cfd4d12

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Repository Contribution Guidelines - CodeSignal MathGraph
2-
This repository contains CodeSignal MathGraph, a math graphing app with live canvas rendering, auto‑generated sliders, and a lightweight Node/Vite stack. When working on this repo, start by reading this file accurately. Always update this file at the end of your work whenever you change behavior, commands, or architecture.
1+
# Repository Contribution Guidelines - CodeSignal CosmoPlot
2+
This repository contains CodeSignal CosmoPlot, a graphing calculator app with live canvas rendering, auto‑generated sliders, and a lightweight Node/Vite stack. When working on this repo, start by reading this file accurately. Always update this file at the end of your work whenever you change behavior, commands, or architecture.
33

44
## Architecture (what actually runs)
55
1. **Client entry**: `client/index.html` mounts the layout, loads design-system CSS, then `client/app.js`.

client/AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Repository Contribution Guidelines – Client Layer
2-
This directory holds all frontend code for MathGraph. If you add or change behavior here, update this file. Use the design-system first; custom styling is a last resort.
2+
This directory holds all frontend code for CodeSignal CosmoPlot. If you add or change behavior here, update this file. Use the design-system first; custom styling is a last resort.
33

44
## Layout & entry points
55
1. `index.html`: Declares the DS styles, base layout (header, sidebar, canvas area), and loads `app.js`. Keep placeholders minimal; app-specific changes belong in JS/CSS, not duplicated HTML.

client/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="utf-8" />
6-
<title>CodeSignal MathGraph</title>
6+
<title>CodeSignal CosmoPlot</title>
77
<meta name="viewport" content="width=device-width, initial-scale=1" />
88
<!-- Fonts (Work Sans) -->
99
<link rel="preconnect" href="https://fonts.googleapis.com">
@@ -35,7 +35,7 @@
3535
<body class="bespoke">
3636
<!-- Navigation Header -->
3737
<header class="header">
38-
<h1>CodeSignal MathGraph</h1>
38+
<h1>CodeSignal CosmoPlot</h1>
3939
<div class="spacer"></div>
4040
<div id="status" class="status">Ready</div>
4141
<button id="btn-help" class="button button-text">Help</button>
@@ -101,7 +101,7 @@ <h1>CodeSignal MathGraph</h1>
101101
<!-- Overview Section -->
102102
<section id="overview">
103103
<h2>Overview</h2>
104-
<p>CodeSignal MathGraph is a graphing calculator that allows you to visualize mathematical expressions. Enter mathematical expressions using <b>x</b> as the variable, and the graph will be rendered in real-time on the canvas.</p>
104+
<p>CodeSignal CosmoPlot is a graphing calculator that allows you to visualize mathematical expressions. Enter mathematical expressions using <b>x</b> as the variable, and the graph will be rendered in real-time on the canvas.</p>
105105
</section>
106106

107107
<!-- Getting Started Section -->

0 commit comments

Comments
 (0)