Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Bug report
about: Report a defect in a Cognivanta repository
title: "[bug]: "
labels: ["bug"]
---

## Summary

What happened?

## Impact

What is broken and who is affected?

## Steps to reproduce

1.
2.
3.

## Expected behavior

## Actual behavior

## Evidence

Logs, screenshots, error messages, or links.

## Environment

Repo, branch, commit, and runtime context.
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Feature request
about: Suggest a small improvement or product change
title: "[feat]: "
labels: ["enhancement"]
---

## Problem

What problem are we solving?

## Proposed change

What should change?

## Business value

Why does this matter?

## Acceptance criteria

- [ ]
- [ ]

## Notes

Anything else the team should know.
22 changes: 22 additions & 0 deletions PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## Summary

What changed?

## Why

Why is this needed?

## Validation

What did you check?

## Risk

What could go wrong?

## Checklist

- [ ] Scope is minimal
- [ ] No secrets were added or changed
- [ ] No production settings were changed
- [ ] Documentation was updated when needed
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,8 @@ The goal is not technology for its own sake, but the creation of practical syste
## Focus

Operational Intelligence • AI-Assisted Automation • Telecom Operations • Observability • Workflow Orchestration • Infrastructure Automation • Autonomous Systems • Reliability • Analytics • Execution Systems


## Engineering baseline

- [Cognivanta engineering baseline](docs/engineering-baseline.md)
20 changes: 20 additions & 0 deletions docs/engineering-baseline.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Cognivanta Engineering Baseline

Use this baseline for small, repeatable improvements across Cognivanta repositories.

## Minimum standard

- Every product repo should have a clear README.
- Changes should go through a pull request, preferably draft until ready.
- Add issue templates when the repo receives operational or product work.
- Add a minimal CI check for active code repos.
- Keep deployment instructions close to the code.
- Avoid new dependencies unless they reduce risk or manual work.

## Review rules

- No secrets in code, docs, or workflow files.
- No production changes without explicit intent.
- Prefer the smallest change that improves clarity or reliability.
- Document the validation command when a repo has one.
- Keep workflows simple and readable.