Syllabus Completion Tracker
List chapters with planned and completed status — see overall % done and chapters still pending.
Completion
| Chapter | Status | Weight |
|---|---|---|
| Real Numbers | done | 1 |
| Polynomials | done | 1 |
| Trigonometry | in-progress | 2 |
| Statistics | pending | 1 |
| Probability | pending | 1 |
Weighted completion: 50% · Pending: Statistics, Probability
How syllabus tracking works
Chapter rows
Enter Chapter|Status|Weight where status is done / in-progress / pending and weight is relative importance (default 1). Overall completion = weighted done ÷ total weight.
Source
Simple planned-vs-completed tracker for term reviews and academic audits. Pair with your board’s official unit list.
Frequently asked questions
What counts as “done”?
Your department rule — typically taught + notes given + at least one assessment. Be consistent across subjects.
Can weights reflect mark weightage?
Yes — set weight to unit marks or periods allotted so overall % reflects exam importance.
Does in-progress count partially?
In-progress contributes 50% of its weight toward the overall percentage.
Is this for one subject only?
Yes per sheet — duplicate for each subject or class.
For developers & AI agents
The Syllabus Completion Tracker is also available as a free, unauthenticated JSON API — no API key, no sign-up, CORS enabled for all origins. Send a GET request with the parameters below and receive the computed result as JSON, including the source of the format or formula used. Invalid input returns HTTP 400 with a JSON { "error": "..." } body.
GET https://knwdle.com/api/tools/syllabus-completion-tracker| Parameter | Required | Description |
|---|---|---|
subject | Yes | Subject name |
className | No | Class / section |
chapters | Yes | Semicolon-separated Chapter|Status|Weight (status: done|in-progress|pending) |
Request:
GET https://knwdle.com/api/tools/syllabus-completion-tracker?subject=Mathematics&className=10-A&chapters=Real+Numbers|done|1;Polynomials|done|1;Trigonometry|in-progress|2;Statistics|pending|1
Response:
{
"tool": "syllabus-completion-tracker",
"name": "Syllabus Completion Tracker",
"source": "Simple planned-vs-completed tracker for term reviews and academic audits. Pair with your board’s official unit list.",
"subject": "Mathematics",
"className": "10-A",
"chapters": [
{
"name": "Real Numbers",
"status": "done",
"weight": 1
},
{
"name": "Polynomials",
"status": "done",
"weight": 1
},
{
"name": "Trigonometry",
"status": "in-progress",
"weight": 2
},
{
"name": "Statistics",
"status": "pending",
"weight": 1
}
],
"totalWeight": 5,
"completionPct": 60,
"pending": [
"Statistics"
],
"steps": [
"Weighted progress = 3 / 5",
"Completion = 60%"
]
}