A standardized approach to describing microservices and their relationships through structured specification file and automated parsing tools.
# Install directly with Go
go install github.com/holydocs/servicefile/cmd/servicefile@latestAdd structured comments to your Go code to describe your service:
/*
service:name UserService
description: Handles user authentication and profile management
owner: team-auth
tags: auth, user-management, microservice
*/
package main
// Service that uses PostgreSQL for data storage
/*
service:uses PostgreSQL
description: Stores user data and authentication tokens
technology:postgresql
proto:tcp
*/
type UserRepository struct {
db *sql.DB
}
// Service that provides gRPC APIs
/*
service:replies
description: Provides user management APIs to other services
technology:grpc-server
proto:grpc
*/
type UserServer struct {
repo *UserRepository
}
// Service that makes HTTP requests to external service
/*
service:requests NotificationService
description: Sends user notifications via email and SMS
technology:notification-service
proto:http
*/
type NotificationClient struct {
httpClient *http.Client
}
// Service that replies to user requests
/*
service:replies User
description: Provides web interface for user interactions
technology:http-server
proto:http
person:true
*/
type WebServer struct {
router *gin.Engine
}Use the CLI tool to parse your Go code and generate a service file:
# Parse current directory
servicefile parse
# Parse specific directory
servicefile parse --dir ./my-service
# Parse recursively (default)
servicefile parse --recursive
# Specify output file
servicefile parse --output my-service.yamlThe tool generates a servicefile.yaml with your service description:
servicefile: "0.1.0"
info:
name: UserService
description: Handles user authentication and profile management
owner: team-auth
tags:
- auth
- user-management
- microservice
relationships:
- action: uses
participant: PostgreSQL
description: Stores user data and authentication tokens
technology: postgresql
proto: tcp
- action: replies
description: Provides user management APIs to other services
technology: grpc-server
proto: grpc
- action: requests
participant: NotificationService
description: Sends user notifications via email and SMS
technology: notification-service
proto: http
- action: replies
participant: User
description: Provides web interface for user interactions
technology: http-server
proto: http
person: trueservicefile: The version of the ServiceFile specificationinfo.name: The name of your serviceinfo.description: A description of what your service doesinfo.system: (Optional) The larger system or platform this service belongs toinfo.owner: (Optional) The team or individual responsible for this serviceinfo.repository: (Optional) The URL of repositoryinfo.tags: (Optional) A list of tags to categorize and organize your service
ServiceFile supports several relationship types:
service:uses: Service depends on another service/databaseservice:requests: Service makes requests to another serviceservice:replies: Service provides APIs for other services/personsservice:sends: Service sends messages/eventsservice:receives: Service receives messages/events
Each relationship can have:
participant: The name of the related service/resourcedescription: Description of the relationshiptechnology: Technology or product used (e.g.,postgresql,redis,firebase,kafka)external: (Optional) Whether this is an external dependency (e.g.,true,false)person: (Optional) Whether this relationship is with a person rather than a service or system (e.g.,true,false)proto: (Optional) Communication protocol used (e.g.,http,grpc,tcp,udp,amqp)tags: (Optional) A list of tags to categorize and organize the relationship (e.g.,persistence,security,critical)
ServiceFile supports documenting and extracting multiple services from a single codebase or monorepo. Each service should be defined with its own service:name comment block. Relationships can be attached to a specific service using the service:{service_name}:{action} format:
/*
service:name UserService
description: Handles user authentication
tags: auth, user-management
*/
// service:UserService:uses DatabaseService
// technology:postgres
// description: Uses PostgreSQL for user data
// tags:persistence, critical
/*
service:name NotificationService
description: Handles user notifications
tags: notification, messaging
*/
// service:NotificationService:requests EmailService
// technology:http
// description: Requests email delivery
// tags:external, email
/*
service:name WebService
description: Handles web interface and user interactions
tags: web, frontend
*/
// service:WebService:replies User
// technology:http
// description: Provides web interface to users
// person:trueWhen you run the parser, it will generate a separate YAML file for each service (e.g., userservice.servicefile.yaml, notificationservice.servicefile.yaml).
If only one service is found, the output will be a single file (e.g., servicefile.yaml).
See the internal/parser/golang/testdata/default directory for complete examples of how to document services using ServiceFile comments.