Skip to main content

From dependence to independence, to interdependence

Last week I was listening to an Coaching For Leaders podcast when Stephen M. R. Covey was the guest. Stephen is a bestselling author and former CEO Covey Leadership Center.


Stephen is also the son of Dr. Stephen R. Covey’s, author of the well known 7 habits of highly effective people book. When asked about a key lesson from his father, Stephen talks about the evolution from dependence to independence to interdependence. Having never read the book, I though it would a good idea to

a) Put the book on my reading list.

b) Already dive in a little bit more into this topic.

What did I learn?

The basic idea is that personal and professional growth can be seen as a journey through three stages: dependence, independence, and interdependence. Each stage represents a significant transformation in how we relate to ourselves, others, and the world.

 


Dependence: The starting point

Dependence is where we all begin. As children, we rely on our parents to meet our basic needs and guide our decisions. In the professional world, dependence can be seen in those who require constant supervision or direction. At this stage, we look to others for approval, solutions, and validation.

This doesn’t mean that dependence is something bad—it’s a natural phase of learning and development. However, staying in this phase too long can stifle growth and create unhealthy dynamics, such as a lack of accountability or over-reliance on authority figures.

Independence: The empowerment phase

The next stage, independence, is often celebrated as the hallmark of success. Independence is characterized by self-reliance, the ability to make decisions, and the confidence to act without needing constant guidance. It’s the phase where we take ownership of our lives and careers.

In the workplace, independence is evident in employees who manage their tasks effectively, take initiative, and solve problems autonomously. It is also the stage where leaders empower themselves to step away from micromanagement and trust their teams to deliver.

However, independence has its limitations. While it fosters self-sufficiency, it can lead to isolation or a lack of collaboration. Highly independent individuals may struggle to delegate, collaborate, or leverage the strengths of others.

Interdependence: The ultimate goal

The final stage, interdependence, is where the real magic happens. Interdependence recognizes that no one succeeds in isolation and that collaboration creates exponential value.

It’s not about losing your independence—it’s about combining your strengths with others to achieve something greater.

In personal growth, interdependence means forming meaningful relationships where support flows both ways. In professional settings, it translates to high-performing teams that trust each other, communicate effectively, and share responsibility for outcomes.

Interdependence is the cornerstone of thriving organizations. It’s seen in cross-functional collaboration, shared leadership models, and cultures that prioritize collective success over individual glory.

My takeaway

The key to growth, both personally and professionally, lies in mastering interdependence. As a leader, it’s essential to embody both tenacity and humility—the tenacity to lead as you were once led and the humility to serve as you were once served. While independence often develops naturally, interdependence demands deliberate effort, insight, courage, and humility. Independence can drive change, but only interdependence can drive true transformation.

More information

The 7 Habits of Highly Effective People – Wikipedia

The Beliefs of Inspirational Leaders – Coaching for Leaders

Popular posts from this blog

Azure DevOps/ GitHub emoji

I’m really bad at remembering emoji’s. So here is cheat sheet with all emoji’s that can be used in tools that support the github emoji markdown markup: All credits go to rcaviers who created this list.

.NET 8–Keyed/Named Services

A feature that a lot of IoC container libraries support but that was missing in the default DI container provided by Microsoft is the support for Keyed or Named Services. This feature allows you to register the same type multiple times using different names, allowing you to resolve a specific instance based on the circumstances. Although there is some controversy if supporting this feature is a good idea or not, it certainly can be handy. To support this feature a new interface IKeyedServiceProvider got introduced in .NET 8 providing 2 new methods on our ServiceProvider instance: object? GetKeyedService(Type serviceType, object? serviceKey); object GetRequiredKeyedService(Type serviceType, object? serviceKey); To use it, we need to register our service using one of the new extension methods: Resolving the service can be done either through the FromKeyedServices attribute: or by injecting the IKeyedServiceProvider interface and calling the GetRequiredKeyedServic...

Kubernetes–Limit your environmental impact

Reducing the carbon footprint and CO2 emission of our (cloud) workloads, is a responsibility of all of us. If you are running a Kubernetes cluster, have a look at Kube-Green . kube-green is a simple Kubernetes operator that automatically shuts down (some of) your pods when you don't need them. A single pod produces about 11 Kg CO2eq per year( here the calculation). Reason enough to give it a try! Installing kube-green in your cluster The easiest way to install the operator in your cluster is through kubectl. We first need to install a cert-manager: kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.5/cert-manager.yaml Remark: Wait a minute before you continue as it can take some time before the cert-manager is up & running inside your cluster. Now we can install the kube-green operator: kubectl apply -f https://github.com/kube-green/kube-green/releases/latest/download/kube-green.yaml Now in the namespace where we want t...