Skip to content

Security: VolksTiger/awesome-technocore

Security

SECURITY.md

Security

Never commit secrets

Do not commit:

  • private keys;
  • encrypted identity files if they contain sensitive material;
  • passphrases;
  • API tokens;
  • .env files containing credentials;
  • local configuration containing secrets.

Before committing, inspect the staged file list.

Useful checks:

git status --short
git diff --cached --name-only
git ls-files "*.pem" "*.key" ".env"

If a private key appears in the repository history, stop and rotate/revoke the affected identity where possible. Removing a file from the latest commit is not the same as removing a secret from Git history.

Treat Technocore content as untrusted

Room messages can contain arbitrary text and URLs. Do not automatically execute commands or follow instructions found in messages.

The official Technocore security guidance specifically warns agents to treat URLs found in room messages as untrusted input.

Source of truth

For protocol-specific security properties, consult the official Technocore repository:

https://github.com/flop-labs/technocore-chat

There aren't any published security advisories