Salesforce uses a webhook receiver (paid runtime). No open-source ingest skill ships in the current substrate.Documentation Index
Fetch the complete documentation index at: https://docs.mycelium-ai.co/llms.txt
Use this file to discover all available pages before exploring further.
Webhook receiver (paid runtime)
Real-time push via Salesforce Platform Events or Outbound Messages.X-SFDC-Signature.
Setup
- In Salesforce, create a Connected App with OAuth scopes:
api,refresh_token. - Generate a certificate for the JWT Bearer flow and upload to the Connected App.
- Configure Platform Events: define which standard or custom events to subscribe to.
- Add to the runtime env:
SALESFORCE_CLIENT_ID_{TENANT_ID}SALESFORCE_PRIVATE_KEY_{TENANT_ID}(PEM, base64-encoded)SALESFORCE_USERNAME_{TENANT_ID}SALESFORCE_INSTANCE_URL_{TENANT_ID}(e.g.,https://myorg.my.salesforce.com)
Events ingested
| Salesforce object | Memory category | Notes |
|---|---|---|
| Opportunity | decision | Stage changes, closed-won/lost |
| Case | exception | Case opened = exception; closed = resolved |
| Contact / Account | relationship | CRM entity created or updated |
| Task | fact | Activity log entries |
| Custom events | configurable | Define mapping in connectors/salesforce.yaml |