diff --git a/PRIVACY.md b/PRIVACY.md index 24ccb2a..3942ccc 100644 --- a/PRIVACY.md +++ b/PRIVACY.md @@ -2,61 +2,53 @@ + -

Privacy Policy

-

Effective Date: February 26, 2026

-

This Privacy Policy describes how the bot (“the Bot”) collects, uses, and stores information when used within a server.

+

Effective Date: March 16, 2026

+

This Privacy Policy describes how SkyBot ("the Bot") collects, uses, and stores information when used within a Valour planet.


-

1. Information Collected

-

The Bot collects and stores only the minimum data necessary to provide its intended functionality.

- -

Information Stored:

+

The Bot collects only the minimum data necessary to provide its intended functionality. All data is stored in-memory and is lost when the Bot restarts. The Bot does not persist any data to disk.

+

Information Temporarily Held in Memory:

    -
  1. Message IDs
  2. -
  3. Channel IDs
  4. -
  5. Server (“Planet”) IDs
  6. -
  7. Planet Configuration data associated with those channels
  8. +
  9. Channel IDs (for routing messages and commands)
  10. +
  11. Planet IDs (for planet-specific operations)
  12. +
  13. Member IDs (for moderation commands)
- -

Information Not Stored:

+

Information Never Stored:

  1. Message content
  2. -
  3. User-generated message content
  4. -
  5. Direct Messages (“DMs”)
  6. +
  7. Direct Messages ("DMs")
  8. Personal account information (including usernames, email addresses, or other personally identifiable information)
  9. +
  10. Any data that persists beyond the Bot's current session

-

2. Purpose of Data Collection

-

Stored information is used exclusively to:

+

Temporarily held information is used exclusively to:

    -
  1. Maintain server-specific configuration settings
  2. -
  3. Associate Planets with designated channels
  4. -
  5. Enable and maintain core bot functionality
  6. +
  7. Route commands to the correct channels and planets
  8. +
  9. Enable moderation commands such as ban, unban, and kick
  10. +
  11. Enable core bot functionality during the current session
-

The Bot does not use stored information for profiling, marketing, analytics, or tracking purposes.

+

The Bot does not use any information for profiling, marketing, analytics, or tracking purposes.


-

3. Data Storage and Security

-

All stored data is maintained securely on the Bot’s hosting server. Reasonable technical measures are implemented to protect stored information against unauthorized access, alteration, or disclosure.

-

The Bot does not sell, rent, trade, or otherwise share stored data with third parties.

+

Since all data is stored in-memory only, no data is written to disk, databases, or any external storage. All temporarily held data is automatically cleared when the Bot restarts.

+

The Bot does not sell, rent, trade, or otherwise share any data with third parties.


-

4. Data Retention

-

Configuration data is retained only while the Bot remains active within a server.

-

If the Bot is removed from a server, associated configuration data may be deleted within a reasonable timeframe.

+

All data is held only for the duration of the Bot's current session. No data is retained beyond a restart. There is no mechanism for long-term data storage in this Bot.


- -

5. Future Changes to Logging or Data Practices

+

5. Self-Hosting

+

SkyBot is designed for self-hosting. If you choose to host your own instance of SkyBot, you are responsible for the privacy and security of any data processed by your instance. This policy applies to the official instance of SkyBot only.

+
+

6. Future Changes to Logging or Data Practices

If additional operational logging or data collection practices are introduced in the future, this Privacy Policy will be updated to reflect those changes prior to implementation.

Continued use of the Bot after updates to this policy constitutes acceptance of the revised policy.


- -

6. Contact Information

+

7. Contact Information

For privacy-related inquiries, requests, or concerns, please contact:

-

Email: contact@skyjoshua.xyz

- +

Email: contact@skyjoshua.xyz

- + \ No newline at end of file diff --git a/README.md b/README.md index a8ab730..604ce59 100644 --- a/README.md +++ b/README.md @@ -1,106 +1,91 @@ -

SkyBot

-

-SkyBot is a Valour.gg bot. +SkyBot is a Valour.gg bot built with .NET 10.

-

Features

-

Data & Privacy

-

SkyBot stores only the minimum data required for operation:

- - +

SkyBot stores only the minimum data required for operation. All data is stored in-memory and is lost on restart. SkyBot does not persist any data to disk.

SkyBot does not store:

-

Full privacy policy:
https://github.com/SkyJoshua/SkyBot/blob/main/PRIVACY.md

-

License

This project is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).

-

See the LICENSE file for details:
https://github.com/SkyJoshua/SkyBot/blob/main/LICENSE

-

Because this project is licensed under AGPL-3.0, if you modify and deploy it publicly (including as a hosted service), you must make your source code available under the same license.

- +

Requirements

+

Installation

-Fork this Repository +

Fork this repository, then:

git clone https://github.com/YOUR_USERNAME/SkyBot.git
-cd SkyBot
+cd SkyBot/SkyBot
 dotnet restore
 
-

All required NuGet packages will be installed automatically using the provided SkyBot.csproj file.

-

Configuration

-

Before running the bot, create a .env file in the root directory of the project with the following content:

- +

Create a .env file in the root directory of the project with your bot token:

TOKEN=your-bot-token-here
-PREFIX=your-prefix-here
 
- +

Then open Config.cs and update the following values:

+
public static readonly long OwnerId = your-owner-id-here;
+public static readonly string Prefix = "your-prefix-here";
+public static readonly string SourceLink = "your-source-link-here";
+
- -

-Sensitive data such as bot tokens should never be committed to the repository. -Use environment variables or secure configuration methods. -

- +

Never commit your .env file to the repository. Ensure it is listed in your .gitignore.

Running the Bot

- -
dotnet run
-
- +
dotnet run

Contributing

Contributions are welcome. By submitting a contribution, you agree that your contributions will be licensed under AGPL-3.0.

-
  1. Fork the repository
  2. Create a feature branch
  3. Submit a pull request
- - + \ No newline at end of file