Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
b3e49b5
Add workflow diagram for CogniOS
NikhByte Jun 26, 2026
f7fb045
Merge branch 'staging' into module/FocusOS
NikhByte Jun 27, 2026
40b0036
Create readme.md
khyati-1711 Jun 30, 2026
1e59190
Update readme.md
khyati-1711 Jun 30, 2026
2260840
added sliding window featuers files
NikhByte Jul 1, 2026
9f5dc5b
Merged staging and resolved DB conflict
NikhByte Jul 1, 2026
2b3818b
Ignore all database files
NikhByte Jul 1, 2026
d2ea37f
Merge pull request #9 from devlup-labs/staging
NikhByte Jul 1, 2026
b75d0a6
chore: clean up gitignore
NikhByte Jul 1, 2026
38f5cca
Merge branch 'module/FocusOS' of https://github.com/devlup-labs/Cogni…
NikhByte Jul 1, 2026
e79e7ae
added sliding window and feature engineering file
NikhByte Jul 2, 2026
d7940cd
cleanup: remove test_db.py and update daemon logic
NikhByte Jul 2, 2026
da5f96e
refactor(metrics): fix thread count collection and update db schema
NikhByte Jul 3, 2026
119c075
Added collector file
lalitgirgaonkar Jul 4, 2026
eece256
Updated collect_snapshot function
lalitgirgaonkar Jul 7, 2026
c851195
Updated readme with module diagram
lalitgirgaonkar Jul 7, 2026
9bfcca1
Update documentation in readme.md
lalitgirgaonkar Jul 7, 2026
609febd
fix: minor fixes in import resolves
NikhByte Jul 10, 2026
2e72a36
update README.md
cherry-aggarwal Jun 29, 2026
079c63b
chore: set up GitHub community health files
cherry-aggarwal Jul 1, 2026
416b025
chore: set up contribution template
cherry-aggarwal Jul 1, 2026
1677ee1
set up pull request template and codeowners
cherry-aggarwal Jul 5, 2026
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
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Global owners
* @cherry-aggarwal @Brijesh-Thakkar @coderTanisha22

89 changes: 89 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
---

name: Bug Report
about: Report an issue or unexpected behavior in the project.
title: "[Bug]: "
labels: bug
assignees: ""
---

# Bug Report

## Summary

Provide a brief description of the bug.

---

## Module

Specify the module where the issue occurs.

Example:

* Telemetry
* OSDoctor
* FocusOS
* Blackbox
* Research Engine
* Dashboard

---

## Steps to Reproduce

Describe the steps required to reproduce the issue.

1.
2.
3.

---

## Expected Behavior

Describe what should happen.

---

## Actual Behavior

Describe what actually happens.

---

## Logs / Error Messages

Paste any relevant logs, stack traces, or terminal output.

```text
```

---

## Screenshots

If applicable, attach screenshots or screen recordings.

---

## Environment

Please provide the following information:

* Operating System:
* Programming Language / Version:
* Browser (if applicable):
* Other relevant details:

---

## Possible Solution (Optional)

If you have an idea of what might be causing the issue or how it could be fixed, describe it here.

---

## Additional Notes

Add any other information that may help reproduce or resolve the issue.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
blank_issues_enabled: false

contact_links:
- name: 💬 Questions & Discussions
about: Ask questions or discuss ideas before creating a new issue.
url: https://github.com/devlup-labs/CogniOS/discussions

- name: 📖 Project Documentation
about: Read the project documentation before opening an issue.
url: https://github.com/devlup-labs/CogniOS#readme
81 changes: 81 additions & 0 deletions .github/ISSUE_TEMPLATE/development_task.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
---

name: Development Task
about: Create a new feature implementation task.
title: "[Feature]: "
labels: enhancement
assignees: ""
---

# Development Task

## Module

Specify the module this feature belongs to.

Example:

* Telemetry
* OSDoctor
* FocusOS
* Blackbox
* Research Engine
* Dashboard

---

## Objective

Clearly describe the feature that needs to be implemented.

---

## Problem Statement

What problem does this feature solve?

---

## Proposed Solution

Describe how you plan to implement this feature.

---

## Tasks

Break the implementation into smaller tasks.

* [ ]
* [ ]
* [ ]
* [ ]

---

## Acceptance Criteria

The feature will be considered complete when:

* [ ]
* [ ]
* [ ]
* [ ]

---

## Related Documentation

Mention any documentation that should be referred to before implementation.

Examples:

* Module README
* API Documentation
* Architecture Documentation

---

## Additional Notes

Add any diagrams, references, or implementation notes that may help contributors.
88 changes: 88 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
---

name: Documentation
about: Suggest improvements or updates to the project documentation.
title: "[Docs]: "
labels: documentation
assignees: ""
---

# Documentation Update

## Summary

Provide a brief description of the documentation change.

---

## Type of Documentation

Select all that apply by replacing the space inside the brackets with an **`x`**.

Example:

```text
- [x] Module Documentation
- [ ] API Documentation
```

* [ ] README
* [ ] Module Documentation
* [ ] API Documentation
* [ ] Architecture Documentation
* [ ] Code Comments
* [ ] Setup Guide
* [ ] Other

---

## Files Affected

List the documentation files that need to be updated.

Example:

```text
docs/modules/backend.md
README.md
backend/api/README.md
```

---

## Description

Describe what needs to be added, updated, or corrected.

---

## Reason for the Update

Explain why this documentation change is needed.

Examples:

* New feature added
* Existing documentation is outdated
* Missing documentation
* Incorrect information
* Improve clarity for contributors

---

## Related Issue(s)

Mention any related GitHub issue(s).

Example:

```text
Closes #12
Related to #8
```

---

## Additional Notes

Include any references, screenshots, diagrams, or links that may help reviewers.
70 changes: 70 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
---

name: Feature Request
about: Propose a new feature or enhancement for the project.
title: "[Feature]: "
labels: enhancement
assignees: ""
---

# Feature Request

## Summary

Provide a brief description of the requested feature.

---

## Module

Specify the module this request is related to.

Example:

* Telemetry
* OSDoctor
* FocusOS
* Blackbox
* Research Engine
* Dashboard

---

## Problem Statement

Describe the current limitation or pain point.

---

## Proposed Solution

Describe your proposed feature and how it should work.

---

## Alternatives Considered

Describe any alternative approaches you have considered.

---

## Expected Outcome

Describe what success looks like after this feature is implemented.

---

## Acceptance Criteria

The feature will be considered complete when:

* [ ]
* [ ]
* [ ]

---

## Additional Context

Add mockups, references, links, or any extra details that may help.

Loading